Commit 051ad0c9 authored by Julia Radzhabova's avatar Julia Radzhabova

Bug 32323

parent 9871b501
......@@ -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('');
}
......
......@@ -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('');
}
......
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