From e1636d30a996833d2a3081b08a36b687edcf75ae Mon Sep 17 00:00:00 2001 From: sahil839 Date: Fri, 7 Aug 2020 23:00:28 +0530 Subject: [PATCH] settings: Close user info popover before opening modal. We should close user info popover for invite and bots page before opening resend invite, revoke invite and bot edit modal. --- static/js/click_handlers.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/js/click_handlers.js b/static/js/click_handlers.js index b38b61eafc..528ae375e1 100644 --- a/static/js/click_handlers.js +++ b/static/js/click_handlers.js @@ -617,6 +617,10 @@ exports.initialize = function () { settings_toggle.toggle_org_setting_collapse(); }); + $(".organization-box").on("show.bs.modal", () => { + popovers.hide_all(); + }); + $(".alert-box").on("click", ".stackframe .expand", function () { $(this).parent().siblings(".code-context").toggle("fast"); });