Merge branch 'develop' of https://github.com/ONLYOFFICE/web-apps into develop
This commit is contained in:
commit
ae19165f88
|
@ -329,7 +329,7 @@ define([
|
|||
this.chLiveComment.setValue(!(value!==null && parseInt(value) == 0));
|
||||
|
||||
value = Common.localStorage.getItem("de-settings-coauthmode");
|
||||
var fast_coauth = (value===null || parseInt(value) == 1);
|
||||
var fast_coauth = (value===null || parseInt(value) == 1) && !(this.mode.isDesktopApp && this.mode.isOffline);
|
||||
|
||||
item = this.cmbCoAuthMode.store.findWhere({value: parseInt(value)});
|
||||
this.cmbCoAuthMode.setValue(item ? item.get('value') : 1);
|
||||
|
@ -352,7 +352,7 @@ define([
|
|||
this._oldUnits = this.cmbUnit.getValue();
|
||||
|
||||
value = Common.localStorage.getItem("de-settings-autosave");
|
||||
this.chAutosave.setValue(fast_coauth);
|
||||
this.chAutosave.setValue(fast_coauth || (value===null || parseInt(value) == 1));
|
||||
|
||||
value = Common.localStorage.getItem("de-settings-spellcheck");
|
||||
this.chSpell.setValue(value===null || parseInt(value) == 1);
|
||||
|
|
|
@ -273,7 +273,7 @@ define([
|
|||
|
||||
/** coauthoring begin **/
|
||||
value = Common.localStorage.getItem("pe-settings-coauthmode");
|
||||
var fast_coauth = (value===null || parseInt(value) == 1);
|
||||
var fast_coauth = (value===null || parseInt(value) == 1) && !(this.mode.isDesktopApp && this.mode.isOffline);
|
||||
|
||||
item = this.cmbCoAuthMode.store.findWhere({value: parseInt(value)});
|
||||
this.cmbCoAuthMode.setValue(item ? item.get('value') : 1);
|
||||
|
@ -286,7 +286,7 @@ define([
|
|||
this._oldUnits = this.cmbUnit.getValue();
|
||||
|
||||
value = Common.localStorage.getItem("pe-settings-autosave");
|
||||
this.chAutosave.setValue(fast_coauth);
|
||||
this.chAutosave.setValue(fast_coauth || (value===null || parseInt(value) == 1));
|
||||
|
||||
value = Common.localStorage.getItem("pe-settings-showsnaplines");
|
||||
this.chAlignGuides.setValue(value===null || parseInt(value) == 1);
|
||||
|
|
|
@ -648,7 +648,7 @@ define([
|
|||
this.chLiveComment.setValue(!(value!==null && parseInt(value) == 0));
|
||||
|
||||
value = Common.localStorage.getItem("sse-settings-coauthmode");
|
||||
var fast_coauth = (value===null || parseInt(value) == 1);
|
||||
var fast_coauth = (value===null || parseInt(value) == 1) && !(this.mode.isDesktopApp && this.mode.isOffline);
|
||||
|
||||
item = this.cmbCoAuthMode.store.findWhere({value: parseInt(value)});
|
||||
this.cmbCoAuthMode.setValue(item ? item.get('value') : 1);
|
||||
|
@ -665,7 +665,7 @@ define([
|
|||
this._oldUnits = this.cmbUnit.getValue();
|
||||
|
||||
value = Common.localStorage.getItem("sse-settings-autosave");
|
||||
this.chAutosave.setValue(fast_coauth);
|
||||
this.chAutosave.setValue(fast_coauth || (value===null || parseInt(value) == 1));
|
||||
|
||||
value = Common.localStorage.getItem("sse-settings-func-locale");
|
||||
if (value===null)
|
||||
|
|
Loading…
Reference in a new issue