Remove unnecessary 'else', add 'lightboxModal' check

This commit is contained in:
kaalibro 2023-12-11 18:06:08 +06:00
parent cee1a40651
commit 6513470f0d
No known key found for this signature in database

View File

@ -164,12 +164,11 @@ document.addEventListener('keydown', function(e) {
if (isEsc) {
const globalPopup = document.querySelector('.global-popup');
if (!globalPopup || globalPopup.style.display === "none") {
const lightboxModal = document.querySelector('#lightboxModal');
if (!globalPopup || globalPopup.style.display === 'none') {
if (document.activeElement === lightboxModal) return;
interruptButton.click();
e.preventDefault();
} else {
if (!globalPopup) return;
globalPopup.style.display = "none";
}
}
});