9 lines
209 B
JavaScript
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();
|
|
};
|