Skip to content

Instantly share code, notes, and snippets.

@abhiomkar
Last active November 3, 2015 07:05
Show Gist options
  • Save abhiomkar/da5ec58d12959fb393cb to your computer and use it in GitHub Desktop.
Save abhiomkar/da5ec58d12959fb393cb to your computer and use it in GitHub Desktop.
Popstate Fix
console.log('popstate handle');
$(window).on("popstate", function(e) {
e.preventDefault();
if (e.originalEvent.state !== null) {
// window.location.reload();
}
window.location.reload();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment