mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-20 21:09:00 +01:00
Call resize handler of widgets with no excess_height which means resize is from nm
This commit is contained in:
parent
dd81c12dd9
commit
d95b5b9e3d
@ -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