Skip to content

Instantly share code, notes, and snippets.

@gobinathm
Last active August 29, 2015 14:00
Show Gist options
  • Save gobinathm/f593bed9fafb96295a06 to your computer and use it in GitHub Desktop.
Save gobinathm/f593bed9fafb96295a06 to your computer and use it in GitHub Desktop.
Fix for those webpage that gets into trouble on ios safari due to pause / play behavior
var userAgent = window.navigator.userAgent;
if (userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) {
window.onpageshow = function(event) {
if (event.persisted) {
window.location.reload()
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment