mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Call resize handler of widgets with no excess_height which means resize is from nm
This commit is contained in:
parent
fe83235b1d
commit
2abb05ead3
@ -155,7 +155,7 @@ etemplate2.prototype.resize = function(e)
|
||||
// "IResizeable" interface
|
||||
self.widgetContainer.iterateOver(function(_widget) {
|
||||
|
||||
if (excess_height != 0) _widget.resize(excess_height);
|
||||
if (excess_height != 0 || excess_height === false) _widget.resize(excess_height);
|
||||
}, self, et2_IResizeable);
|
||||
}
|
||||
},100);
|
||||
|
Loading…
Reference in New Issue
Block a user