[DE mobile] Fix review
This commit is contained in:
parent
5e840f12c1
commit
4841a1628b
|
@ -307,17 +307,23 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onAcceptCurrentChange: function() {
|
onAcceptCurrentChange: function() {
|
||||||
|
var me = this;
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.asc_AcceptChanges(dateChange[0]);
|
this.api.asc_AcceptChanges(dateChange[0]);
|
||||||
|
setTimeout(function () {
|
||||||
|
me.api.asc_GetNextRevisionsChange();
|
||||||
|
}, 10);
|
||||||
}
|
}
|
||||||
this.api.asc_GetNextRevisionsChange();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onRejectCurrentChange: function() {
|
onRejectCurrentChange: function() {
|
||||||
|
var me = this;
|
||||||
if (this.api) {
|
if (this.api) {
|
||||||
this.api.asc_RejectChanges(dateChange[0]);
|
this.api.asc_RejectChanges(dateChange[0]);
|
||||||
|
setTimeout(function () {
|
||||||
|
me.api.asc_GetNextRevisionsChange();
|
||||||
|
}, 10);
|
||||||
}
|
}
|
||||||
this.api.asc_GetNextRevisionsChange();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
updateInfoChange: function() {
|
updateInfoChange: function() {
|
||||||
|
|
Loading…
Reference in a new issue