|
|
@ -5,11 +5,11 @@
|
|
|
|
ajaxify.widgets = {};
|
|
|
|
ajaxify.widgets = {};
|
|
|
|
|
|
|
|
|
|
|
|
ajaxify.widgets.reposition = function (location) {
|
|
|
|
ajaxify.widgets.reposition = function (location) {
|
|
|
|
$('body [no-widget-class]').each(function () {
|
|
|
|
$('body [has-widget-class]').each(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
var $this = $(this);
|
|
|
|
if ($this.attr('no-widget-target') === location) {
|
|
|
|
if ($this.attr('has-widget-target') === location) {
|
|
|
|
$this.removeClass();
|
|
|
|
$this.removeClass();
|
|
|
|
$this.addClass($this.attr('no-widget-class'));
|
|
|
|
$this.addClass($this.attr('has-widget-class'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
@ -20,7 +20,7 @@
|
|
|
|
return callback();
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var widgetLocations = ['sidebar', 'footer', 'header'], numLocations;
|
|
|
|
var widgetLocations = ['sidebar', 'footer', 'header'];
|
|
|
|
|
|
|
|
|
|
|
|
$('#content [widget-area]').each(function () {
|
|
|
|
$('#content [widget-area]').each(function () {
|
|
|
|
var location = $(this).attr('widget-area');
|
|
|
|
var location = $(this).attr('widget-area');
|
|
|
@ -29,23 +29,16 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
numLocations = widgetLocations.length;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!numLocations) {
|
|
|
|
|
|
|
|
ajaxify.widgets.reposition();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renderWidgets(locations) {
|
|
|
|
|
|
|
|
$.get(config.relative_path + '/api/widgets/render' + (config['cache-buster'] ? '?v=' + config['cache-buster'] : ''), {
|
|
|
|
$.get(config.relative_path + '/api/widgets/render' + (config['cache-buster'] ? '?v=' + config['cache-buster'] : ''), {
|
|
|
|
locations: locations,
|
|
|
|
locations: widgetLocations,
|
|
|
|
template: template + '.tpl',
|
|
|
|
template: template + '.tpl',
|
|
|
|
url: url,
|
|
|
|
url: url,
|
|
|
|
isMobile: utils.isMobile()
|
|
|
|
isMobile: utils.isMobile()
|
|
|
|
}, function (renderedAreas) {
|
|
|
|
}, function (renderedAreas) {
|
|
|
|
for (var x = 0; x < renderedAreas.length; ++x) {
|
|
|
|
for (var x = 0; x < renderedAreas.length; ++x) {
|
|
|
|
var renderedWidgets = renderedAreas[x].widgets,
|
|
|
|
var renderedWidgets = renderedAreas[x].widgets;
|
|
|
|
location = renderedAreas[x].location,
|
|
|
|
var location = renderedAreas[x].location;
|
|
|
|
html = '';
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < renderedWidgets.length; ++i) {
|
|
|
|
for (var i = 0; i < renderedWidgets.length; ++i) {
|
|
|
|
html += templates.parse(renderedWidgets[i].html, {});
|
|
|
|
html += templates.parse(renderedWidgets[i].html, {});
|
|
|
@ -73,8 +66,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
area.html(html);
|
|
|
|
area.html(html);
|
|
|
|
|
|
|
|
|
|
|
|
if (!renderedWidgets.length) {
|
|
|
|
if (renderedWidgets.length) {
|
|
|
|
area.addClass('hidden');
|
|
|
|
area.removeClass('hidden');
|
|
|
|
ajaxify.widgets.reposition(location);
|
|
|
|
ajaxify.widgets.reposition(location);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -92,8 +85,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
callback(renderedAreas);
|
|
|
|
callback(renderedAreas);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
renderWidgets(widgetLocations);
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}(ajaxify || {}));
|
|
|
|
}(ajaxify || {}));
|
|
|
|