Sign in
apache
/
hugegraph-doc
/
refs/heads/init-hugegraph-computer-doc
/
.
/
node_modules
/
gitbook-plugin-theme-cuav
/
src
/
js
/
theme
/
loading.js
blob: 3de916dbad6ee0fdfa4c6e0a1dca3d0e3ef13541 [
file
] [
log
] [
blame
]
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
};