forked from extern/egroupware
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
|
// "IResizeable" interface
|
||||||
self.widgetContainer.iterateOver(function(_widget) {
|
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);
|
}, self, et2_IResizeable);
|
||||||
}
|
}
|
||||||
},100);
|
},100);
|
||||||
|
Loading…
Reference in New Issue
Block a user