Created
January 10, 2019 21:57
-
-
Save asipple1/3be7f254773b16c769c31ecd8814e59f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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