File "animatedSelector.js"

Full Path: /srv/www/www.cadoro.it/app/lib/jquery/src/effects/animatedSelector.js
File size: 244 bytes
MIME-type: text/plain
Charset: utf-8

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;
};

} );