diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index 70b265508..a6278a749 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -146,7 +146,7 @@ function _editorAutoSave() { if(fo_obj && upload_target_srl) { var title = fo_obj.title.value; var content = editorGetContent(upload_target_srl); - if(title.trim() != _autoSaveObj.title.trim() || content.trim() != _autoSaveObj.content.trim()) { + if((fo_obj.title && title.trim() != _autoSaveObj.title.trim()) || content.trim() != _autoSaveObj.content.trim()) { var params = new Array(); params["document_srl"] = upload_target_srl; params["title"] = title;