From f74711040fbe59935bd6acfb3bea96034a914aac Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Sun, 5 Nov 2017 11:07:58 +0100 Subject: [PATCH] Fix tooltips not hiding --- scipost/static/scipost/assets/js/notifications.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scipost/static/scipost/assets/js/notifications.js b/scipost/static/scipost/assets/js/notifications.js index a20d3a146..12f6b849b 100644 --- a/scipost/static/scipost/assets/js/notifications.js +++ b/scipost/static/scipost/assets/js/notifications.js @@ -134,6 +134,10 @@ function initiate_popover() { }) .on('inserted.bs.popover', function() { $('body').trigger('notification_open_list'); + }) + .on('hide.bs.popover', function() { + // Bug: force removal of tooltip + $('body > .tooltip').remove(); }); } -- GitLab