From fb380b3b4046ecfe12925f03ad33caa6a34d6735 Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Tue, 09 Oct 2012 03:20:55 -0400
Subject: [PATCH] Bugfix: Loader Layer was not properly hidden
---
interface/web/js/scrigo.js.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/interface/web/js/scrigo.js.php b/interface/web/js/scrigo.js.php
index 1bb61f7..b3029f3 100644
--- a/interface/web/js/scrigo.js.php
+++ b/interface/web/js/scrigo.js.php
@@ -50,7 +50,7 @@
function hideLoadIndicator() {
requestsRunning -= 1;
if(requestsRunning < 1) {
- jQuery('#ajaxloader').fadeOut('fast');
+ jQuery('#ajaxloader').fadeOut('fast', function() { jQuery('#ajaxloader').hide(); } );
requestsRunning = 0; // just for the case...
}
}
--
Gitblit v1.9.1