From 935107da6a1e025b7d4329e9a53fcf99133731dd Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 31 Aug 2020 17:13:07 +0300 Subject: [PATCH] [SSE] Fix Bug 46403 --- apps/common/main/lib/component/Window.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/Window.js b/apps/common/main/lib/component/Window.js index e9dd88e61..ed374b246 100644 --- a/apps/common/main/lib/component/Window.js +++ b/apps/common/main/lib/component/Window.js @@ -803,7 +803,7 @@ define([ } } - Common.NotificationCenter.trigger('modal:close', this, hide_mask); + Common.NotificationCenter.trigger('modal:close', this, hide_mask && (parseInt(mask.attr('counter'))<1)); } this.$window.remove(); @@ -843,7 +843,7 @@ define([ } } } - Common.NotificationCenter.trigger('modal:hide', this, hide_mask); + Common.NotificationCenter.trigger('modal:hide', this, hide_mask && (parseInt(mask.attr('counter'))<1)); } this.$window.hide(); this.$window.removeClass('notransform');