자동 저장 문서 불러오면 파일 삭제 안되는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6652 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2009-06-23 07:03:25 +00:00
parent b1bb5702ce
commit 5c938fa1e2
6 changed files with 33 additions and 12 deletions

View file

@ -59,8 +59,14 @@ function editorStart_fck(editor, element, editor_sequence, content_key, editor_h
setTimeout(function(){
editorRelKeys[editor_sequence]['primary'].value = saved_srl;
setContent(editor_sequence,saved_content);
if(typeof(editorUploadInit) == 'function') editorUploadInit(uploadSettingObj, true);
}, 100);
xAddEventListener(window,"load",function() { var param = new Array();
param['editor_sequence'] = editor_sequence;
param['primary_key'] = primary_key;
param['mid'] = current_mid;
var response_tags = new Array("error","message","editor_sequence","key","title","content","document_srl");
exec_xml('editor',"procEditorLoadSavedDocument", param, null, response_tags);
});
} else {
editorRemoveSavedDoc();
}