fixed bug with sorting of widgets

This commit is contained in:
psychobunny
2014-02-19 19:19:25 -05:00
parent fa4555e26e
commit 18369fae7e

View File

@@ -16,7 +16,7 @@ var async = require('async'),
var rendered = [];
Widgets.getArea(area.template, area.location, function(err, widgets) {
async.each(widgets, function(widget, next) {
async.eachSeries(widgets, function(widget, next) {
plugins.fireHook('filter:widget.render:' + widget.widget, {
uid: uid,
area: area,