noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 07/44: Bug : ajax fails if wait_box does not


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 07/44: Bug : ajax fails if wait_box does not exist
Date: Wed, 26 Dec 2018 04:29:51 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 553a2d9dfa1aef309216a687206c3c6a534b96f2
Author: Dany De Bontridder <address@hidden>
Date:   Sun Sep 23 09:07:48 2018 +0200

    Bug : ajax fails if wait_box does not exist
---
 html/js/scripts.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/html/js/scripts.js b/html/js/scripts.js
index 9bbf5b0..05f0bdf 100644
--- a/html/js/scripts.js
+++ b/html/js/scripts.js
@@ -1420,7 +1420,8 @@ function remove_waiting_node()
 }
 function remove_waiting_box()
 {
-    Effect.Fade('wait_box', { duration: 0.6 });
+    if ( $('wait_box') ) { Effect.Fade('wait_box', { duration: 0.6 }); }
+    
     remove_waiting_node();
 }
 /**



reply via email to

[Prev in Thread] Current Thread [Next in Thread]