Advertisement
Guest User

Untitled

a guest
May 27th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function doStuff() {
  2.   var enoughWidth = window.innerWidth > 50;
  3.   var enoughHeight = window.innerHeight > 50;
  4.   if (enoughWidth && enoughHeight) {
  5.     actuallyDoStuff();
  6.   } else {
  7.     // eg clearContent();
  8.   }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement