Last active
August 29, 2015 14:12
-
-
Save Komsomol/6137d5e13d3caa7be213 to your computer and use it in GitHub Desktop.
Check for Window Orientation of mobile devices. Landscape and Portrait.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener('orientationchange', checkPage); | |
function checkPage(){ | |
switch(window.orientation){ | |
case 90: | |
currentState = 'landscape'; | |
break; | |
case 0: | |
currentState = 'portrait'; | |
break; | |
} | |
console.log('change in oreintation', window.orientation, currentState); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment