This commit is contained in:
Huong Nguyen 2024-12-05 10:08:19 +07:00
commit 3eb413343e
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A
3 changed files with 6 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -326,12 +326,13 @@ define(['jquery', 'core/str', 'core/custom_interaction_events'],
}.bind(this));
// Close the popover if any other part of the page is clicked.
$('html').click(function(e) {
var target = $(e.target);
document.addEventListener('click', (e) => {
const target = e.target;
// Check if the click is outside the root element.
if (!this.root.is(target) && !this.root.has(target).length) {
this.closeMenu();
}
}.bind(this));
}, true); // `true` makes it a capture phase event listener.
customEvents.define(this.getContentContainer(), [
customEvents.events.scrollBottom