From 6f4da9a8dfc46f760d9116f53eb137e6554377e9 Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Tue, 20 Aug 2013 09:47:35 -0400 Subject: [PATCH] Remove trailing comma in define array. Close gh-1336. --- src/effects/animated-selector.js | 4 ++-- 1 file 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 +});