From 2730c4adac79fc7d9df938d22ba126e0b1ee8162 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 24 Apr 2019 13:06:38 +0300 Subject: [PATCH] [SSE mobile] Force ON fast co-authoring mode --- apps/spreadsheeteditor/mobile/app/controller/Main.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/app/controller/Main.js b/apps/spreadsheeteditor/mobile/app/controller/Main.js index 5cf689fe6..329230918 100644 --- a/apps/spreadsheeteditor/mobile/app/controller/Main.js +++ b/apps/spreadsheeteditor/mobile/app/controller/Main.js @@ -498,12 +498,8 @@ define([ this.isLiveCommenting?this.api.asc_showComments(true):this.api.asc_hideComments(); if (this.appOptions.isEdit && this.appOptions.canLicense && !this.appOptions.isOffline && this.appOptions.canCoAuthoring) { - value = Common.localStorage.getItem("sse-settings-coauthmode"); - if (value===null && Common.localStorage.getItem("sse-settings-autosave")===null && - this.appOptions.customization && this.appOptions.customization.autosave===false) { - value = 0; // use customization.autosave only when sse-settings-coauthmode and sse-settings-autosave are null - } - this._state.fastCoauth = (value===null || parseInt(value) == 1); + // Force ON fast co-authoring mode + me._state.fastCoauth = true; } else this._state.fastCoauth = false; this.api.asc_SetFastCollaborative(this._state.fastCoauth);