modules/editor/tpl/editor_common.js 파일내에서
function editorEnableAutoSave 내에서
editorEnableAutoSave.timer = setTimeout(function(){_editorAutoSave(false, callback)}, 50000);
의 50000 값을 바꾸시고 (50000은 50초를 의미)
function _editorAutoSave(exe, callback) 함수내에서
editorEnableAutoSave.timer = setTimeout(function(){ _editorAutoSave(exe, callback) }, 50000);
의 50000 도 바꾸시면 됩니다.