aboutsummaryrefslogtreecommitdiffstats
path: root/bower_components/jquery/src/effects/animatedSelector.js
diff options
context:
space:
mode:
Diffstat (limited to 'bower_components/jquery/src/effects/animatedSelector.js')
-rw-r--r--bower_components/jquery/src/effects/animatedSelector.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/bower_components/jquery/src/effects/animatedSelector.js b/bower_components/jquery/src/effects/animatedSelector.js
deleted file mode 100644
index d84c9c7..0000000
--- a/bower_components/jquery/src/effects/animatedSelector.js
+++ /dev/null
@@ -1,13 +0,0 @@
-define( [
- "../core",
- "../selector",
- "../effects"
-], function( jQuery ) {
-
-jQuery.expr.filters.animated = function( elem ) {
- return jQuery.grep( jQuery.timers, function( fn ) {
- return elem === fn.elem;
- } ).length;
-};
-
-} );