Bug: Fails when p_callback_true is false

This commit is contained in:
sparkyx 2022-06-25 14:44:07 +02:00
parent 6e14b34867
commit cbc0d3fb76

View file

@ -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();}