Skip to content

Instantly share code, notes, and snippets.

@stevenschobert
Created January 29, 2014 22:35
Show Gist options
  • Save stevenschobert/8698628 to your computer and use it in GitHub Desktop.
Save stevenschobert/8698628 to your computer and use it in GitHub Desktop.
function isPortrait() {
return Math.abs(window.orientation) / 90 !== 1);
}
// registering orientation change event listeners
window.addEventListener('orientationchange', handleOrientationChange);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment