From b66589d2ab4eeb0f7405e2d7c58bc019dcac56f5 Mon Sep 17 00:00:00 2001 From: Ozcan Ovunc Date: Thu, 30 Mar 2017 12:52:36 +0000 Subject: [PATCH] Fixed minWidth option of Panel --- plugins/c9.ide.panels/panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/c9.ide.panels/panel.js b/plugins/c9.ide.panels/panel.js index 7175a9222..b240bc2df 100644 --- a/plugins/c9.ide.panels/panel.js +++ b/plugins/c9.ide.panels/panel.js @@ -176,7 +176,7 @@ define(function(require, module, exports) { }); aml.$ext.style.zIndex = 100; - aml.$ext.style.minWidth = ""; //Needed for the anims + aml.$ext.style.minWidth = minWidth; aml.$ext.style.position = "absolute"; aml.$ext.style.left = where == "left" ? area.width + "px" : 0; aml.$ext.style.top = 0;