You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closing the popup by clicking outside is a function, the only donwside with this is that when the user select text and the mouse goes out of the popup, it closes it.
To disable this functionnality, you can remove / comment the lines in
FRONT/js/model/popups/PopupManager.js
// on container clicked, close the popup if the click is outside the popupthis.popupContainer.addEventListener('click',(e)=>{if(e.target===this.popupContainer){this.#closeAll();}});
The text was updated successfully, but these errors were encountered:
Closing the popup by clicking outside is a function, the only donwside with this is that when the user select text and the mouse goes out of the popup, it closes it.
To disable this functionnality, you can remove / comment the lines in
FRONT/js/model/popups/PopupManager.js
The text was updated successfully, but these errors were encountered: