From e92ef966808e8455da40b87097b7cd43e3d63019 Mon Sep 17 00:00:00 2001 From: zero Date: Tue, 24 Apr 2007 05:16:52 +0000 Subject: [PATCH] git-svn-id: http://xe-core.googlecode.com/svn/trunk@1302 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/tpl/js/editor.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index 77c69fd46..0497f389e 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -133,7 +133,7 @@ function editorEnableAutoSave(fo_obj, upload_target_srl) { var title = fo_obj.title.value; var content = fo_obj.content.value; _autoSaveObj = {"fo_obj":fo_obj, "upload_target_srl":upload_target_srl, "title":title, "content":content}; - setTimeout(_editorAutoSave, 30000); + setTimeout(_editorAutoSave, 15000); } function _editorAutoSave() { @@ -154,7 +154,7 @@ function _editorAutoSave() { xTop("editor_autosaved_message", xScrollTop()+10); xGetElementById("editor_autosaved_message").style.display = "block"; - setTimeout(function() {xGetElementById("editor_autosaved_message").style.display = "none";}, 3000); + setTimeout(function() {xGetElementById("editor_autosaved_message").style.display = "none";}, 15000); show_waiting_message = false; exec_xml("editor","procEditorSaveDoc", params, _editorAutoSaved); show_waiting_message = true; @@ -162,7 +162,7 @@ function _editorAutoSave() { } } - setTimeout(_editorAutoSave, 3000); + setTimeout(_editorAutoSave, 15000); } function _editorAutoSaved(ret_obj) {