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;