hdf
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user