Last active
July 13, 2016 21:14
-
-
Save iksi/25fadb9ff1721a9d475ef613f294eeba 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
var getElementDimensions = function (element) { | |
return { | |
width: Math.max(element.scrollWidth, element.offsetWidth, element.clientWidth), | |
height: Math.max(element.scrollHeight, element.offsetHeight, element.clientHeight) | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment