Skip to content

Instantly share code, notes, and snippets.

@ranbena
Created December 19, 2012 06:13
Show Gist options
  • Save ranbena/4334763 to your computer and use it in GitHub Desktop.
Save ranbena/4334763 to your computer and use it in GitHub Desktop.
Going fullscreen
// attach to window resize event
window.addEventListener("resize", function(e) {
// determine current orientation
var isLandscape = Math.abs(window.orientation) == 90;
if (isLandscape) {
// do something
}
});
<meta name="apple-mobile-web-app-capable" content="yes" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment