Skip to content
Permalink
9d5e76b215
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (12 sloc) 244 Bytes
define( [
"../core",
"../selector",
"../effects"
], function( jQuery ) {
"use strict";
jQuery.expr.pseudos.animated = function( elem ) {
return jQuery.grep( jQuery.timers, function( fn ) {
return elem === fn.elem;
} ).length;
};
} );