From 34b73e15e64b8c095ce5162581c754718b458488 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Wed, 9 Apr 2014 16:35:51 -0400 Subject: [PATCH] dont add dupes to widgetLocations this prevents widgets from being executed multiple times --- public/src/widgets.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/src/widgets.js b/public/src/widgets.js index bc5036cb7b..47dffea3ce 100644 --- a/public/src/widgets.js +++ b/public/src/widgets.js @@ -18,7 +18,10 @@ var widgetLocations = ['sidebar', 'footer'], numLocations; $('#content [widget-area]').each(function() { - widgetLocations.push($(this).attr('widget-area')); + var location = $(this).attr('widget-area'); + if ($.inArray(location, widgetLocations) === -1) { + widgetLocations.push(location); + } }); numLocations = widgetLocations.length;