Bug 32323

This commit is contained in:
Julia Radzhabova 2016-04-28 13:51:22 +03:00
parent 9871b501f1
commit 051ad0c99c
2 changed files with 4 additions and 4 deletions

View file

@ -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('');
}

View file

@ -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('');
}