[SSE] Fix Bug 46403

This commit is contained in:
Julia Radzhabova 2020-08-31 17:13:07 +03:00
parent fabe2afeab
commit 935107da6a

View file

@ -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(); 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.hide();
this.$window.removeClass('notransform'); this.$window.removeClass('notransform');