Skip to content

Instantly share code, notes, and snippets.

@iksi
Last active April 21, 2016 10:14
Show Gist options
  • Save iksi/4100fe114b7a240fff8448f2732db641 to your computer and use it in GitHub Desktop.
Save iksi/4100fe114b7a240fff8448f2732db641 to your computer and use it in GitHub Desktop.
Viewport functions
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