From 2abb05ead3314e8fdded1126aa6ac5113535142b Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Fri, 8 May 2015 13:38:42 +0000 Subject: [PATCH] Call resize handler of widgets with no excess_height which means resize is from nm --- etemplate/js/etemplate2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/etemplate2.js b/etemplate/js/etemplate2.js index 5ea6336ff4..d7832f4193 100644 --- a/etemplate/js/etemplate2.js +++ b/etemplate/js/etemplate2.js @@ -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);