Guest User

Untitled

a guest
Jun 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. var width = 0;
  2. var t = setInterval(function() {
  3. width = Math.max(screen.width,screen.availWidth,window.outerWidth,window.innerWidth,document.body.offsetWidth,document.body.clientWidth);
  4. if (width > 0) {
  5. clearTimeout(t);
  6. width = [720,600,540,480,320].filter(function(v) { return v < width; })[0];
  7. console.log("Width set: "+width);
  8. document.documentElement.className = "w" + width;
  9. document.body.className = "w" + width + " " + client() + " " + document.body.className;
  10. }
  11. }, 1);
Add Comment
Please, Sign In to add comment