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