From 130f9dd09618282f4a930bd463216740f18d522d Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 10 Dec 2013 13:34:16 +0800 Subject: [PATCH] Roo/Resizable.js --- Roo/Resizable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Roo/Resizable.js b/Roo/Resizable.js index 9bbb7b03f9..25dd20f5c5 100644 --- a/Roo/Resizable.js +++ b/Roo/Resizable.js @@ -506,7 +506,7 @@ Roo.extend(Roo.Resizable, Roo.util.Observable, { case "southeast": case "east": h = oh * (w/ow); - h = Math.max(Math.max(mh, h), mxh); + h = Math.min(Math.max(mh, h), mxh); w = ow * (h/oh); break; case "south": -- 2.39.2