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

9 lines
209 B
JavaScript

function checkWidth() {
if (!window.matchMedia('(max-device-width: 768px)').matches) {
document.getElementById("nav-menu").open = true;
}
}
window.onresize = function() {
checkWidth();
};