noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 24/24: Bug: Fails when p_callback_true is fal


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 24/24: Bug: Fails when p_callback_true is false
Date: Tue, 12 Jul 2022 07:05:35 -0400 (EDT)

sparkyx pushed a commit to branch master
in repository noalyss.

commit cbc0d3fb76458c655cb830b21071dc11150cafa2
Author: sparkyx <danydb@noalyss.eu>
AuthorDate: Sat Jun 25 14:44:07 2022 +0200

    Bug: Fails when p_callback_true is false
---
 html/js/noalyss_script.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/html/js/noalyss_script.js b/html/js/noalyss_script.js
index 1e63c923a..358db98c6 100644
--- a/html/js/noalyss_script.js
+++ b/html/js/noalyss_script.js
@@ -3109,7 +3109,7 @@ function init_scroll()
 function confirm_box(p_obj, p_message, p_callback_true,p_waiting)
 {
     waiting_box();
-    try {
+        try {
         // Find id of the end
         var name = "";
         if (p_obj != null)
@@ -3122,8 +3122,9 @@ function confirm_box(p_obj, p_message, 
p_callback_true,p_waiting)
         }
 
         // execute the callback function or submit the form
-        if (p_callback_true == undefined || p_callback_true == null)
+        if ( ! p_callback_true )
         {
+
             smoke.confirm(p_message, function (e) {
                 if (e) {
                     if (p_waiting){waiting_box();}



reply via email to

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