summaryrefslogtreecommitdiff
path: root/web-ui/app/js/helpers/monitored_ajax.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/helpers/monitored_ajax.js')
-rw-r--r--web-ui/app/js/helpers/monitored_ajax.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/web-ui/app/js/helpers/monitored_ajax.js b/web-ui/app/js/helpers/monitored_ajax.js
index 0068e10c..7f9a9beb 100644
--- a/web-ui/app/js/helpers/monitored_ajax.js
+++ b/web-ui/app/js/helpers/monitored_ajax.js
@@ -31,9 +31,6 @@ define(['page/events', 'views/i18n'], function (events, i18n) {
var originalBeforeSend = config.beforeSend;
config.beforeSend = function () {
- if (!config.skipLoadingWarning) {
- $('#loading').show();
- }
if (originalBeforeSend) {
originalBeforeSend();
}
@@ -41,9 +38,6 @@ define(['page/events', 'views/i18n'], function (events, i18n) {
var originalComplete = config.complete;
config.complete = function () {
- if (!config.skipLoadingWarning) {
- $('#loading').fadeOut(500);
- }
if (originalComplete) {
originalComplete();
}