Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Reset (close) overlay menu when switching
- // from mobile to desktop screen size
- const mqHeader = window.matchMedia('(min-width: 992px');
- mqHeader.onchange = (e) => {
- if (e.matches) {
- window.kinsey.theme.header.closeMenu();
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement