Fix navigation menu closing too often

This commit is contained in:
Joshua Goins 2024-02-19 15:38:21 -05:00
parent 8326ba2b2e
commit a56cfba95c

View file

@ -1,7 +1,5 @@
function checkWidth() { function checkWidth() {
if (window.matchMedia('(max-device-width: 768px)').matches) { if (!window.matchMedia('(max-device-width: 768px)').matches) {
document.getElementById("nav-menu").open = false;
} else {
document.getElementById("nav-menu").open = true; document.getElementById("nav-menu").open = true;
} }
} }