웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판 에디터에서 자동저장 기능의 시간간격 조절하는 방법
2013.07.26 11:37
설정하는 기능이 관리페이지에 있는건 아니고 에디터 소스를 고치면 가능합니다
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 도 바꾸시면 됩니다.
이렇게 한가지 또 배워갑니다. 감사^_^;