2024-02-10 20:33:02 -05:00
|
|
|
function checkWidth() {
|
2024-02-19 15:45:35 -05:00
|
|
|
let navmenu = document.getElementById("nav-menu");
|
|
|
|
|
|
|
|
// If the device somehow gains the stick sidebar, make sure it's open
|
2024-02-19 15:47:45 -05:00
|
|
|
if (!window.matchMedia('(max-device-width: 768px)').matches) {
|
2024-02-19 15:45:35 -05:00
|
|
|
navmenu.open = true;
|
2024-02-10 20:33:02 -05:00
|
|
|
}
|
2023-04-03 17:20:42 -04:00
|
|
|
}
|
2024-02-10 20:33:02 -05:00
|
|
|
|
|
|
|
window.onresize = function() {
|
|
|
|
checkWidth();
|
|
|
|
};
|
2024-02-19 15:45:35 -05:00
|
|
|
|
|
|
|
checkWidth();
|
|
|
|
|
|
|
|
let navmenu = document.getElementById("nav-menu");
|
|
|
|
|
|
|
|
// Disable by default on mobile devices
|
|
|
|
if (window.matchMedia('(max-device-width: 768px)').matches) {
|
|
|
|
navmenu.open = false;
|
|
|
|
}
|