aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects/animatedSelector.js
blob: 327956f72a0bada8315c44a327c4a56e470fdbed (plain)
1
2
3
4
5
6
7
8
9
10
import jQuery from "../core.js";

import "../selector.js";
import "../effects.js";

jQuery.expr.pseudos.animated = function( elem ) {
	return jQuery.grep( jQuery.timers, function( fn ) {
		return elem === fn.elem;
	} ).length;
};