Created
October 26, 2021 15:41
-
-
Save fysherman/5e11746c92f71b2fd52c87f97c973b27 to your computer and use it in GitHub Desktop.
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
let orientation = 'portrait'; | |
if(window?.screen?.orientation?.angle && [270, 90].includes(window.screen.orientation.angle)) { | |
orientation = 'landscape'; | |
} else if(window.orientation && [90, -90].includes(window.orientation)) { | |
orientation = 'landscape'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment