Advertisement
artemsemkin

Kinsey Template: force close overlay menu on media query match

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