File "animatedSelector.js"
Full Path: /home/cananyalcin/public_html/vendors/jquery/src/effects/animatedSelector.js
File size: 229 bytes
MIME-type: text/plain
Charset: utf-8
define( [
"../core",
"../selector",
"../effects"
], function( jQuery ) {
jQuery.expr.filters.animated = function( elem ) {
return jQuery.grep( jQuery.timers, function( fn ) {
return elem === fn.elem;
} ).length;
};
} );