Commit 25d68851 authored by Julia Radzhabova's avatar Julia Radzhabova

Bug 32323

parent cc24db11
......@@ -537,12 +537,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('');
}
......
......@@ -363,12 +363,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('');
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment