Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15403 |
manish.sha |
1 |
define([
|
|
|
2 |
"../core",
|
|
|
3 |
"../selector",
|
|
|
4 |
"../effects"
|
|
|
5 |
], function( jQuery ) {
|
|
|
6 |
|
|
|
7 |
jQuery.expr.filters.animated = function( elem ) {
|
|
|
8 |
return jQuery.grep(jQuery.timers, function( fn ) {
|
|
|
9 |
return elem === fn.elem;
|
|
|
10 |
}).length;
|
|
|
11 |
};
|
|
|
12 |
|
|
|
13 |
});
|