From: martinlanghoff Date: Thu, 6 Jul 2006 05:38:53 +0000 (+0000) Subject: wiki: fix for IE6 bug with HTMLArea, where the text area is not drawn X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=330b0bb2ad7d135e915371a5f543c96b4f4181a9;p=moodle.git wiki: fix for IE6 bug with HTMLArea, where the text area is not drawn 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 --- diff --git a/lib/editor/htmlarea/htmlarea.php b/lib/editor/htmlarea/htmlarea.php index 62d408e7b1..9ea3292811 100644 --- a/lib/editor/htmlarea/htmlarea.php +++ b/lib/editor/htmlarea/htmlarea.php @@ -771,7 +771,7 @@ HTMLArea.prototype.generate = function () { 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;