/* Smartphone patch for menu */ /* It don't work if links haven't any href attribute */ let w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0) if(w < 700) { let buttons = document.getElementById('light-menu').getElementsByTagName('li'); for(let i = 0; i < buttons.length; i++) { buttons[i].getElementsByTagName('a')[0].setAttribute('href', '#'); } }