IE6 measures a page element and - sometimes - it does this before the
element is drawn, so the dimensions it finds are zero. This update sets
sensible minimum for the width.
Author: Donal McMullan <donal@catalyst.net.nz>
var height = (this.config.height == "auto" ? (this._ta_size.h) : this.config.height);
height = parseInt(height);
var width = (this.config.width == "auto" ? (this._toolbar.offsetWidth) : this.config.width);
- width = parseInt(width);
+ width = Math.max(parseInt(width), 588);
if (!HTMLArea.is_ie) {
height -= 2;