From 12eaa5814ef20b0910e8d64a753378b6f6797989 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Fri, 22 May 2026 00:52:16 +1000 Subject: Initial commit --- Server/wwwroot/js/mobile.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Server/wwwroot/js/mobile.js (limited to 'Server/wwwroot/js/mobile.js') diff --git a/Server/wwwroot/js/mobile.js b/Server/wwwroot/js/mobile.js new file mode 100644 index 0000000..0af11cc --- /dev/null +++ b/Server/wwwroot/js/mobile.js @@ -0,0 +1,7 @@ +function hideMobileMenu() { + document.getElementsByTagName('body')[0].classList.remove('mobile-menu-visible'); +} + +function toggleMobileMenu() { + document.getElementsByTagName('body')[0].classList.toggle('mobile-menu-visible'); +} -- cgit v1.3