render widgets upon ajaxify - this widget feetorez iz completified!

This commit is contained in:
psychobunny
2014-02-19 17:23:17 -05:00
parent c4121f6ee6
commit c0df95b2dc
2 changed files with 29 additions and 5 deletions

View File

@@ -93,7 +93,7 @@ var ajaxify = {};
translator.load(tpl_url);
jQuery('#footer, #content').removeClass('hide').addClass('ajaxifying');
$('#footer, #content').removeClass('hide').addClass('ajaxifying');
templates.flush();
templates.load_template(function () {
@@ -110,11 +110,27 @@ var ajaxify = {};
app.processPage();
jQuery('#content, #footer').stop(true, true).removeClass('ajaxifying');
ajaxify.initialLoad = false;
var widgetLocations = [];
app.refreshTitle(url);
$(window).trigger('action:ajaxify.end', { url: url });
require(['vendor/async'], function(async) {
$('#content [widget-area]').each(function() {
widgetLocations.push(this.getAttribute('widget-area'));
});
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) {
area.html(templates.prepare(area.html()).parse({widgets: renderedWidgets})).removeClass('hidden');
});
});
$('#content, #footer').stop(true, true).removeClass('ajaxifying');
ajaxify.initialLoad = false;
app.refreshTitle(url);
$(window).trigger('action:ajaxify.end', { url: url });
});
}, url);
return true;