mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 07:35:16 +00:00
16 lines
286 B
JavaScript
16 lines
286 B
JavaScript
define([
|
|
"jQuery"
|
|
], function($) {
|
|
var showLoading = function(p) {
|
|
$(".book").addClass("is-loading");
|
|
p.always(function() {
|
|
$(".book").removeClass("is-loading");
|
|
});
|
|
|
|
return p;
|
|
};
|
|
|
|
return {
|
|
show: showLoading
|
|
};
|
|
}); |