This commit is contained in:
2026-09-12 01:44:03 +02:00
parent 3dda406954
commit 155395237b
16 changed files with 1045 additions and 31 deletions
+12
View File
@@ -1799,6 +1799,18 @@ window.cancelAnimFrame = (function () {
}
return;
}
const searchOverlay = document.getElementById('search-overlay');
if (searchOverlay && searchOverlay.classList.contains('visible')) {
const closeBtn = document.getElementById('search-close');
if (closeBtn) closeBtn.click();
return;
}
const excludedTagsOverlay = document.getElementById('excluded-tags-overlay');
if (excludedTagsOverlay && excludedTagsOverlay.classList.contains('visible')) {
const closeBtn = document.getElementById('excluded-tags-close');
if (closeBtn) closeBtn.click();
return;
}
if (document.body.classList.contains('onara-modal-open')) {
closeOnaraModal();
}