Created
May 27, 2019 05:33
-
-
Save HeathLoganCampbell/eeaccb083080c03ad7d97480603384fd 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
/** | |
Gets the widths and height of a browser | |
@Return (Width, Height) | |
**/ | |
function getDimensions() | |
{ | |
var element = document.documentElement, | |
body = document.body, | |
width = window.innerWidth || element.clientWidth || body.clientWidth, | |
height = window.innerHeight || element.clientHeight || body.clientHeight; | |
return [width, height] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment