Guest User

Untitled

a guest
Jul 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. /// This...
  2.  
  3. if(featuredItems.filter(':animated').length) {
  4. return false;
  5. }
  6.  
  7. /// ... is twice as fast as this...
  8.  
  9. featuredItems.each(function() {
  10. if($(this).is(':animated')) {
  11. return false;
  12. }
  13. });
Add Comment
Please, Sign In to add comment