Do not close the popover when clicking on the background

This commit is contained in:
Frederic Guillot 2016-10-08 09:56:10 -04:00
parent cbe606cef5
commit 1466afb771
No known key found for this signature in database
GPG Key ID: 92D77191BA7FBC99
2 changed files with 2 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -13,10 +13,6 @@ Kanboard.Popover.prototype.listen = function() {
self.close(e);
});
$(document).on("click", "#popover-container", function(e) {
self.close(e);
});
$(document).on("click", "#popover-content", function(e) {
e.stopPropagation();
});