File "animatedSelector.js"

Full Path: /home/cananyalcin/public_html/vendors/parsleyjs/bower_components/jquery/src/effects/animatedSelector.js
File size: 225 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;
};

});