aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects/animatedSelector.js
blob: 0e0b377f1c3732a77dd651f9403a8c5d22ea3fe0 (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;
};