From abc6245cb51f2368e09df388dcb8fadfbde9be64 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Tue, 25 Aug 2015 19:58:36 +0200 Subject: [PATCH] Bug #1151Bug cannot remove a submenu --- html/js/scripts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/js/scripts.js b/html/js/scripts.js index ca1f765c6..d656b4e50 100644 --- a/html/js/scripts.js +++ b/html/js/scripts.js @@ -1518,7 +1518,6 @@ function display_sub_menu(p_dossier,p_profile,p_dep,p_level) */ function remove_sub_menu(p_dossier,profile_menu_id) { - if ( ! confirm ('Confirm ?')) return; smoke.confirm('Confirme ?', function (e) { if (e) { @@ -1531,10 +1530,11 @@ function remove_sub_menu(p_dossier,profile_menu_id) onSuccess:function (req) { try { remove_waiting_box(); + $('sub'+profile_menu_id).remove(); if ( $('menu_table').rows.length > 1 ) { $('menu_table').rows[1].remove(); } - $('sub'+profile_menu_id).remove(); + } catch(e) { alert_box(e.message);