Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / webapp / app / policyApp / libs / bower_components / jquery / src / effects / animatedSelector.js
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 });