This commit is contained in:
vickihe
2019-09-09 21:07:51 +08:00
parent dfa64a5847
commit 7488fe6bb6
132 changed files with 32120 additions and 168 deletions

View File

@@ -0,0 +1,15 @@
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;
};
} );