[PE mobile][SSE mobile] Bug 47922

This commit is contained in:
Julia Radzhabova 2021-02-02 22:20:13 +03:00
parent 1d322c635e
commit 0ebc7ee662
2 changed files with 4 additions and 0 deletions

View file

@ -544,6 +544,8 @@ define([
if (me.appOptions.isEdit && me.appOptions.canLicense && !me.appOptions.isOffline && me.appOptions.canCoAuthoring) {
// Force ON fast co-authoring mode
me._state.fastCoauth = true;
} else if (!me.appOptions.isEdit && me.appOptions.isRestrictedEdit) {
me._state.fastCoauth = true;
} else {
me._state.fastCoauth = false;
}

View file

@ -550,6 +550,8 @@ define([
if (this.appOptions.isEdit && this.appOptions.canLicense && !this.appOptions.isOffline && this.appOptions.canCoAuthoring) {
// Force ON fast co-authoring mode
me._state.fastCoauth = true;
} else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) {
this._state.fastCoauth = true;
} else
this._state.fastCoauth = false;
this.api.asc_SetFastCollaborative(this._state.fastCoauth);