mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 08:23:01 +02:00
Merge branch 'MDL-83223-main' of https://github.com/meirzamoodle/moodle
This commit is contained in:
commit
3eb413343e
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user