Guest User

Untitled

a guest
Jan 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var resizeTicking = false;
  2.  
  3. window.addEventListener('resize', function () {
  4. if (!resizeTicking) {
  5. window.requestAnimationFrame(function () {
  6. // ...
  7.  
  8.  
  9. resizeTicking = false;
  10. });
  11. }
  12. resizeTicking = true;
  13. });
Add Comment
Please, Sign In to add comment