diff --git a/public/src/ajaxify.js b/public/src/ajaxify.js index 94eaba4fb6..4790649b7b 100644 --- a/public/src/ajaxify.js +++ b/public/src/ajaxify.js @@ -120,7 +120,7 @@ var ajaxify = {}; async.each(widgetLocations, function(location, next) { var area = $('#content [widget-area="' + location + '"]'); - socket.emit('widgets.render', {template: tpl_url + '.tpl', location: location}, function(err, renderedWidgets) { + socket.emit('widgets.render', {template: tpl_url + '.tpl', url: url, location: location}, function(err, renderedWidgets) { area.html(templates.prepare(area.html()).parse({widgets: renderedWidgets})).removeClass('hidden'); next(err); });