Last active
March 9, 2017 21:54
-
-
Save arozwalak/9fa067751a6a68e5bab5 to your computer and use it in GitHub Desktop.
Javascript: viewport width and height
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
function viewport () { | |
var e = window, a = 'inner'; | |
if (!('innerWidth' in window )) { | |
a = 'client'; | |
e = document.documentElement || document.body; | |
} | |
return { width : e[ a+'Width' ] , height : e[ a+'Height' ] }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment