From db6490f1d1ce04acb748fa9d256fcba64b04ab7b Mon Sep 17 00:00:00 2001 From: Sanj Date: Tue, 12 Jul 2011 21:27:57 +0530 Subject: [PATCH] min width to 420 --- edgware/static/js/editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edgware/static/js/editor.js b/edgware/static/js/editor.js index 79e71be..9f4be48 100644 --- a/edgware/static/js/editor.js +++ b/edgware/static/js/editor.js @@ -1289,8 +1289,8 @@ function replaceDiv( div ) { height = parseInt($(div).css('height')); height = toPx(height); width = parseInt($(div).css('width')); - if (width < 400) { - width = 400; + if (width < 420) { + width = 420; } width = toPx(width);