]> source.dussan.org Git - jquery.git/commitdiff
Remove trailing comma in define array. Close gh-1336.
authorGuy Bedford <guybedford@gmail.com>
Tue, 20 Aug 2013 13:47:35 +0000 (09:47 -0400)
committerTimmy Willison <timmywillisn@gmail.com>
Tue, 20 Aug 2013 13:47:35 +0000 (09:47 -0400)
src/effects/animated-selector.js

index 290e32bfa2c64903607a8999758e44a749133b8e..c9fa68950ae08c4f988d250920976debe190b542 100644 (file)
@@ -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
+});