Skip to content

Instantly share code, notes, and snippets.

@ctrochalakis
Forked from defunkt/ipad.js
Created June 1, 2010 06:49
Show Gist options
  • Save ctrochalakis/420655 to your computer and use it in GitHub Desktop.
Save ctrochalakis/420655 to your computer and use it in GitHub Desktop.
window.onorientationchange = function() {
if (window.orientation == 0) {
$('#sidebar').fadeOut()
} else {
$('#sidebar').fadeIn()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment