Skip to content

Instantly share code, notes, and snippets.

@EABangalore
Created April 25, 2018 08:25
Show Gist options
  • Save EABangalore/574a4298d18a867bfd6d4eff9f547b88 to your computer and use it in GitHub Desktop.
Save EABangalore/574a4298d18a867bfd6d4eff9f547b88 to your computer and use it in GitHub Desktop.
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' ] };
}
console.log(viewport());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment