Blame view

bower_components/jquery/src/effects/animatedSelector.js 225 Bytes
c5169e0e   Renato De Donato   a new hope
1
  define([
74249687   Luigi Serra   Cross browser con...
2
3
4
5
6
7
  	"../core",
  	"../selector",
  	"../effects"
  ], function( jQuery ) {
  
  jQuery.expr.filters.animated = function( elem ) {
c5169e0e   Renato De Donato   a new hope
8
  	return jQuery.grep(jQuery.timers, function( fn ) {
74249687   Luigi Serra   Cross browser con...
9
  		return elem === fn.elem;
c5169e0e   Renato De Donato   a new hope
10
  	}).length;
74249687   Luigi Serra   Cross browser con...
11
12
  };
  
c5169e0e   Renato De Donato   a new hope
13
  });