Skip to content

Instantly share code, notes, and snippets.

@jackz3
Created June 17, 2012 15:37
Show Gist options
  • Save jackz3/2944871 to your computer and use it in GitHub Desktop.
Save jackz3/2944871 to your computer and use it in GitHub Desktop.
function checkOrientation(){
var currMode = "";
switch(window.orientation){
case 0:
currMode = "portrait";
break;
case -90:
currMode = "landscape";
break;
case 90:
currMode = "landscape";
break;
case 180:
currMode = "landscape";
break;
}
return currMode;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment