Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bower_components/jquery/src/effects/animatedSelector.js')
-rw-r--r--libs/bower_components/jquery/src/effects/animatedSelector.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/bower_components/jquery/src/effects/animatedSelector.js b/libs/bower_components/jquery/src/effects/animatedSelector.js
index bc5a3d6c11..d84c9c7032 100644
--- a/libs/bower_components/jquery/src/effects/animatedSelector.js
+++ b/libs/bower_components/jquery/src/effects/animatedSelector.js
@@ -1,13 +1,13 @@
-define([
+define( [
"../core",
"../selector",
"../effects"
], function( jQuery ) {
jQuery.expr.filters.animated = function( elem ) {
- return jQuery.grep(jQuery.timers, function( fn ) {
+ return jQuery.grep( jQuery.timers, function( fn ) {
return elem === fn.elem;
- }).length;
+ } ).length;
};
-});
+} );