diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index c48d19e43..2726344c2 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -545,12 +545,12 @@ define([ var me = this; if (me._state.timerSave===undefined) me._state.timerSave = setInterval(function(){ - if ((new Date()) - me._state.isSaving>2000) { + if ((new Date()) - me._state.isSaving>500) { clearInterval(me._state.timerSave); me.getApplication().getController('Statusbar').setStatusCaption(''); me._state.timerSave = undefined; } - }, 2000); + }, 500); } else this.getApplication().getController('Statusbar').setStatusCaption(''); } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index c8d551d05..9c73e3730 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -371,12 +371,12 @@ define([ var me = this; if (me._state.timerSave===undefined) me._state.timerSave = setInterval(function(){ - if ((new Date()) - me._state.isSaving>2000) { + if ((new Date()) - me._state.isSaving>500) { clearInterval(me._state.timerSave); me.getApplication().getController('Statusbar').setStatusCaption(''); me._state.timerSave = undefined; } - }, 2000); + }, 500); } else this.getApplication().getController('Statusbar').setStatusCaption(''); }