aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects
diff options
context:
space:
mode:
authorGuy Bedford <guybedford@gmail.com>2013-08-20 09:47:35 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-08-20 09:47:35 -0400
commit6f4da9a8dfc46f760d9116f53eb137e6554377e9 (patch)
tree49198f2bf25717540ed7206dcdfa58e0686f023f /src/effects
parent62da89b89abec219a769d71f0b152c83acd21123 (diff)
downloadjquery-6f4da9a8dfc46f760d9116f53eb137e6554377e9.tar.gz
jquery-6f4da9a8dfc46f760d9116f53eb137e6554377e9.zip
Remove trailing comma in define array. Close gh-1336.
Diffstat (limited to 'src/effects')
-rw-r--r--src/effects/animated-selector.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects/animated-selector.js b/src/effects/animated-selector.js
index 290e32bfa..c9fa68950 100644
--- a/src/effects/animated-selector.js
+++ b/src/effects/animated-selector.js
@@ -1,11 +1,11 @@
define([
"../core",
"../selector",
- "../effects",
+ "../effects"
], function( jQuery ) {
jQuery.expr.filters.animated = function( elem ) {
return jQuery.grep(jQuery.timers, function( fn ) {
return elem === fn.elem;
}).length;
};
-}); \ No newline at end of file
+});