Skip to content

Instantly share code, notes, and snippets.

@elliotttf
Created March 17, 2012 03:02
Show Gist options
  • Save elliotttf/2054606 to your computer and use it in GitHub Desktop.
Save elliotttf/2054606 to your computer and use it in GitHub Desktop.
var supportsOrientationChange = "onorientationchange" in window;
var orientationEvent = supportsOrientationChange ? "orientationchange" : "resize";
window.addEventListener(
orientationEvent, function() {
window.location.reload()
},
false
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment