diff options
Diffstat (limited to 'static/website/js/custom.js')
-rw-r--r-- | static/website/js/custom.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/static/website/js/custom.js b/static/website/js/custom.js index 20801f6..ef0752e 100644 --- a/static/website/js/custom.js +++ b/static/website/js/custom.js @@ -41,4 +41,12 @@ $(document).ready(function() { } }); }); + + $(document).ajaxStart(function() { + $("#ajax-loader").show(); + }); + + $(document).ajaxStop(function() { + $("#ajax-loader").hide(); + }); }); |