mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-05 05:25:49 +01:00
widgets - only collapse / expand divs that specify a target location
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user