From 330b0bb2ad7d135e915371a5f543c96b4f4181a9 Mon Sep 17 00:00:00 2001 From: martinlanghoff Date: Thu, 6 Jul 2006 05:38:53 +0000 Subject: [PATCH] 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 --- lib/editor/htmlarea/htmlarea.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5