redstrate.com/themes/red/assets/js/site.js

22 lines
508 B
JavaScript
Raw Normal View History

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
if (window.matchMedia('(max-device-width: 768px)').matches) {
navmenu.open = true;
2024-02-10 20:33:02 -05: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;
}