summaryrefslogtreecommitdiff
path: root/Server/wwwroot/js/mobile.js
blob: 0af11cc03961bb66640a4b3ba9917a4389885791 (plain)
1
2
3
4
5
6
7
function hideMobileMenu() {
    document.getElementsByTagName('body')[0].classList.remove('mobile-menu-visible');
}

function toggleMobileMenu() {
    document.getElementsByTagName('body')[0].classList.toggle('mobile-menu-visible');
}