Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. (function($){
  2. $.rdWindow = {
  3. timer: null,
  4. width: 0,
  5. height: 0
  6. };
  7. })(jQuery);
  8.  
  9. $(window).on({
  10. resize: function(e) {
  11. var self = $(this);
  12. clearTimeout($.rdWindow.timer);
  13. $.rdWindow.timer = setTimeout(
  14. function(){
  15. $.rdWindow.width = self.width();
  16. $.rdWindow.height = self.height();
  17. console.log($.rdWindow);
  18. },
  19. 1000);
  20. }
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement