Unverified Commit 6513470f authored by kaalibro's avatar kaalibro
Browse files

Remove unnecessary 'else', add 'lightboxModal' check

parent cee1a406
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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";
        }
    }
});