From: Guy Bedford Date: Tue, 20 Aug 2013 13:47:35 +0000 (-0400) Subject: Remove trailing comma in define array. Close gh-1336. X-Git-Tag: 2.1.0-beta1~69 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6f4da9a8dfc46f760d9116f53eb137e6554377e9;p=jquery.git Remove trailing comma in define array. Close gh-1336. --- 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 +});