min width to 420

This commit is contained in:
Sanj 2011-07-12 21:27:57 +05:30
parent 7e560ab1c2
commit db6490f1d1

View File

@ -1289,8 +1289,8 @@ function replaceDiv( div ) {
height = parseInt($(div).css('height')); height = parseInt($(div).css('height'));
height = toPx(height); height = toPx(height);
width = parseInt($(div).css('width')); width = parseInt($(div).css('width'));
if (width < 400) { if (width < 420) {
width = 400; width = 420;
} }
width = toPx(width); width = toPx(width);