Skip to content

Instantly share code, notes, and snippets.

@delowardev
Created July 4, 2016 05:03
Show Gist options
  • Save delowardev/3167eb0d30a188fb83c4210375a1c7e7 to your computer and use it in GitHub Desktop.
Save delowardev/3167eb0d30a188fb83c4210375a1c7e7 to your computer and use it in GitHub Desktop.
var resizeId;
$(window).resize(function() {
clearTimeout(resizeId);
resizeId = setTimeout(doneResizing, 500);
});
function doneResizing(){
location.reload();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment