From efc54df346f82451e451855f3740fa23cc6d0280 Mon Sep 17 00:00:00 2001 From: zero Date: Tue, 10 Apr 2007 13:36:44 +0000 Subject: [PATCH] git-svn-id: http://xe-core.googlecode.com/svn/trunk@1092 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/tpl/editor.html | 2 +- modules/editor/tpl/js/editor.js | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/editor/tpl/editor.html b/modules/editor/tpl/editor.html index 192dc4839..a613da33f 100644 --- a/modules/editor/tpl/editor.html +++ b/modules/editor/tpl/editor.html @@ -88,7 +88,7 @@ -
+
{$lang->msg_auto_saved}  
diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index 6f45c6818..77c69fd46 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -25,6 +25,10 @@ function editorInit(upload_target_srl) { // editor 시작 (upload_target_srl로 iframe객체를 얻어서 쓰기 모드로 전환) function editorStart(upload_target_srl) { + // iframe_area를 찾음 + var iframe_area = xGetElementById("editor_iframe_area_"+upload_target_srl); + xInnerHtml(iframe_area, ""); + // iframe obj를 찾음 var iframe_obj = editorGetIFrame(upload_target_srl); if(!iframe_obj) return;