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

10 lines
209 B
JavaScript
Raw Normal View History

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