Last active
April 21, 2016 10:14
-
-
Save iksi/4100fe114b7a240fff8448f2732db641 to your computer and use it in GitHub Desktop.
Viewport functions
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
var getViewportDimensions = function () { | |
return { | |
width: Math.max(document.documentElement.clientWidth, window.innerWidth || 0), | |
height: Math.max(document.documentElement.clientHeight, window.innerHeight || 0) | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment