UNPKG
gitbook-plugin-theme-cuav
Version:
latest (1.1.6)
1.1.6
1.1.5
1.1.3
1.1.2
1.1.1
1.1.0
0.0.9
CUAV theme for GitBook
github.com/cuav/gitbook-plugin-theme-cuav
cuav/gitbook-plugin-theme-cuav
gitbook-plugin-theme-cuav
/
src
/
js
/
theme
/
loading.js
15 lines
(11 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
gitbook =
window
.
gitbook
;
function
showLoading
(
p
) { gitbook.
state
.
$book
.
addClass
(
'is-loading'
); p.
always
(
function
(
) { gitbook.
state
.
$book
.
removeClass
(
'is-loading'
); });
return
p; }
module
.
exports
= {
show
: showLoading };