Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function viewport() {
  2. var e = window, a = 'inner';
  3. if (!('innerWidth' in window )) {
  4. a = 'client';
  5. e = document.documentElement || document.body;
  6. }
  7. return { width : e[ a+'Width' ] , height : e[ a+'Height' ] };
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement