From cbc0d3fb76458c655cb830b21071dc11150cafa2 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Sat, 25 Jun 2022 14:44:07 +0200 Subject: [PATCH] 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();}