Skip to content

Instantly share code, notes, and snippets.

@asipple1
Created January 10, 2019 21:57
Show Gist options
  • Save asipple1/3be7f254773b16c769c31ecd8814e59f to your computer and use it in GitHub Desktop.
Save asipple1/3be7f254773b16c769c31ecd8814e59f to your computer and use it in GitHub Desktop.
import debounce from 'lodash/debounce';
window.addEventListener('resize', debounce(resizeFunction, 100), false);
function resizeFunction() {
// If the window matches the media query then close the menu
if (window.matchMedia('(max-width: 1080px)').matches) {
// Resize things here.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment