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

12 lines
279 B
JavaScript
Raw Normal View History

2024-02-10 20:33:02 -05:00
function checkWidth() {
if (window.matchMedia('(max-device-width: 768px)').matches) {
document.getElementById("nav-menu").open = false;
} else {
document.getElementById("nav-menu").open = true;
}
}
2024-02-10 20:33:02 -05:00
window.onresize = function() {
checkWidth();
};