Created
June 9, 2016 09:40
-
-
Save alexvas123/303c39da8e7108a818011ca6436074de to your computer and use it in GitHub Desktop.
Resize Screen - Reload
This file contains hidden or 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
// RESIZE - RELOAD | |
window.addEventListener('resize', function(event) { | |
clearTimeout(resizeTimeout); | |
var resizeTimeout = setTimeout(function(){ | |
window.location.reload(); | |
}, 1500); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment