Tag: yealink
Yealink offers innovative communication solutions, including video conferencing system.
$(document).ready(function() { if (layoutData.langCode == "en") { $('#aa-search-input').each(function() { if (!$(this).val()) { $(this).attr("placeholder", "Search Nureva support"); } }); } }); // FOR FOOTER MENUS document.addEventListener('DOMContentLoaded', () => { const headings = document.querySelectorAll('.menu-heading'); function toggleMenu(heading) { if (window.innerWidth <= 1099) { const menuList = heading.parentElement; const ul = menuList.querySelector('ul'); if (menuList.classList.contains('active')) { menuList.classList.remove('active'); ul.style.maxHeight = null; } else { menuList.classList.add('active'); ul.style.maxHeight = ul.scrollHeight + "px"; } } } function addClickListeners() { headings.forEach(heading => { heading.addEventListener('click', clickHandler); }); } function removeClickListeners() { headings.forEach(heading => { heading.removeEventListener('click', clickHandler); }); } function clickHandler(event) { if (window.innerWidth <= 1099) { toggleMenu(event.currentTarget); } } function checkWindowSize() { if (window.innerWidth > 1099) { removeClickListeners(); // Ensure menus are open on desktop view const menuLists = document.querySelectorAll('.menu-list'); menuLists.forEach(menuList => { menuList.classList.add('active'); const ul = menuList.querySelector('ul'); ul.style.maxHeight = null; ul.style.padding = null; }); } else { addClickListeners(); // Ensure menus are collapsible on mobile view const menuLists = document.querySelectorAll('.menu-list'); menuLists.forEach(menuList => { menuList.classList.remove('active'); const ul = menuList.querySelector('ul'); ul.style.maxHeight = 0; }); } } window.addEventListener('resize', checkWindowSize); checkWindowSize(); });