summaryrefslogtreecommitdiffstats
path: root/theme/javascript/loading.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-10-06 09:42:49 +0200
committerSamy Pessé <samypesse@gmail.com>2015-10-06 09:42:49 +0200
commitce1e0e187339976fc3cae7ef70bcfdd0eaf68981 (patch)
treec71ab2b8badd7a54759790bde083cab721796d92 /theme/javascript/loading.js
parentbcb224d1cb0add4285538f03956f6f6a1574e49a (diff)
parentc2775b3b63e92a7047f019a9d56851ce4fdd6c02 (diff)
downloadgitbook-ce1e0e187339976fc3cae7ef70bcfdd0eaf68981.zip
gitbook-ce1e0e187339976fc3cae7ef70bcfdd0eaf68981.tar.gz
gitbook-ce1e0e187339976fc3cae7ef70bcfdd0eaf68981.tar.bz2
Merge pull request #964 from GitbookIO/features/plugin_api
Better APIs for Plugins
Diffstat (limited to 'theme/javascript/loading.js')
-rw-r--r--theme/javascript/loading.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/theme/javascript/loading.js b/theme/javascript/loading.js
new file mode 100644
index 0000000..797b487
--- /dev/null
+++ b/theme/javascript/loading.js
@@ -0,0 +1,14 @@
+var state = require('./state');
+
+function showLoading(p) {
+ state.$book.addClass('is-loading');
+ p.always(function() {
+ state.$book.removeClass('is-loading');
+ });
+
+ return p;
+}
+
+module.exports = {
+ show: showLoading
+};