widgets - only collapse / expand divs that specify a target location

v1.18.x
psychobunny 11 years ago
parent 375c2c2ce1
commit 924388d96f

@ -4,11 +4,13 @@
(function(ajaxify) {
ajaxify.widgets = {};
ajaxify.widgets.reposition = function() {
ajaxify.widgets.reposition = function(location) {
$('body [no-widget-class]').each(function() {
var $this = $(this);
$this.removeClass();
$this.addClass($this.attr('no-widget-class'));
if ($this.attr('no-widget-target') === location) {
$this.removeClass();
$this.addClass($this.attr('no-widget-class'));
}
});
};
@ -51,7 +53,7 @@
area.html(html).removeClass('hidden');
if (!renderedWidgets.length) {
ajaxify.widgets.reposition();
ajaxify.widgets.reposition(location);
}
$('#content [widget-area] img:not(.user-img)').addClass('img-responsive');

Loading…
Cancel
Save