Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / jquery / src / effects / animatedSelector.js
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 (file)
index 0000000..d84c9c7
--- /dev/null
@@ -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;
+};
+
+} );