Skip to content

Instantly share code, notes, and snippets.

@alexvas123
Created June 9, 2016 09:40
Show Gist options
  • Save alexvas123/303c39da8e7108a818011ca6436074de to your computer and use it in GitHub Desktop.
Save alexvas123/303c39da8e7108a818011ca6436074de to your computer and use it in GitHub Desktop.
Resize Screen - Reload
// 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