From ac19b4c4d3b8fad7dae9c2ad6c7ec5c06a83414f Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Fri, 4 Jan 2013 11:26:53 -0400 Subject: [PATCH] =?UTF-8?q?BUG=2010262=20Menu=20del=20dise=C3=B1r=20se=20s?= =?UTF-8?q?obrepone=20a=20popups=20SOLVED?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - The panel of menu Right remains visible. - Was add validation for panel. --- workflow/engine/js/processmap/core/processmap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/js/processmap/core/processmap.js b/workflow/engine/js/processmap/core/processmap.js index d2d5d1cd6..455fd0afb 100755 --- a/workflow/engine/js/processmap/core/processmap.js +++ b/workflow/engine/js/processmap/core/processmap.js @@ -2673,7 +2673,7 @@ var mainPanel; function showDbConnectionsList(PRO_UID) { - if (typeof(this.Pm.menu) != undefined) { + if (typeof(this.Pm.menu) != 'undefined') { this.Pm.menu.remove(); } mainPanel = new leimnud.module.panel(); @@ -2706,7 +2706,7 @@ function showDbConnectionsList(PRO_UID) function showCaseSchedulerList(PRO_UID) { - if (typeof(this.Pm.menu) != undefined) { + if (typeof(this.Pm.menu) != 'undefined') { this.Pm.menu.remove(); } mainPanel = new leimnud.module.panel();