From 0493787736f1761102d6f18ae21fbb1aafed2961 Mon Sep 17 00:00:00 2001 From: zero Date: Wed, 20 Feb 2008 11:42:39 +0000 Subject: [PATCH] fix ie6 editor disabled git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3736 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/tpl/js/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index b0606a866..d65bf3287 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -68,7 +68,7 @@ function editorStart(editor_sequence, primary_key, content_key, editor_height) { var iframe_obj = editorGetIFrame(editor_sequence); if(!iframe_obj) return; xWidth(iframe_obj.parentNode, '100%'); - xWidth(iframe_obj, xWidth(iframe_obj.parentNode)-2); + iframe_obj.style.width = '100%'; // 현 에디터를 감싸고 있는 form문을 찾음 var fo_obj = editorGetForm(editor_sequence);