summaryrefslogtreecommitdiffstats
path: root/theme/javascript/core/loading.js
blob: 1ddb213544d54ccc0aa2d51f9ded3783a7a6f94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
define([
    "jQuery"
], function($) {
    var showLoading = function(p) {
        $(".book").addClass("is-loading");
        p.always(function() {
            $(".book").removeClass("is-loading");
        });

        return p;
    };

    return {
        show: showLoading
    };
});