update
Some checks failed
Deploy Static Site / deploy (push) Failing after 31s

This commit is contained in:
2025-08-01 09:58:17 +04:00
parent e2aad01d1c
commit df0807f5d2
107 changed files with 4777 additions and 5143 deletions

View File

@ -858,7 +858,12 @@ function getTitleSite() {
// добавляет label, чтобы появились иконки поиска и очискти
const currentUrl = window.location.href;
document.querySelector("#search-icon").addEventListener('click', () => {
document.querySelector("#search-panel").classList.add('mobsearch')
})
document.querySelector('#reset-search').addEventListener('click', () => {
document.querySelector("#search-panel").classList.remove('mobsearch')
} )
if (
/elma365.com\/ru\/help/i.test(currentUrl) ||
/elma365.com\/en\/help/i.test(currentUrl) ||
@ -875,6 +880,7 @@ if (
if (searchIcon) {
searchIcon.addEventListener("click", (evt) => {
evt.preventDefault();
searchPanel.classList.add("mobsearch")
searchPanel.classList.toggle("show-search-panel");
setTimeout(() => searchInput.focus(), 500);