Merge branch 'hotfix/v4.2.11'
This commit is contained in:
commit
cb90b36468
|
|
@ -96,7 +96,7 @@
|
|||
info: 'Some info',
|
||||
logo: ''
|
||||
},
|
||||
about: false,
|
||||
about: true,
|
||||
feedback: {
|
||||
visible: false,
|
||||
url: http://...
|
||||
|
|
@ -551,7 +551,7 @@
|
|||
lang: 'en',
|
||||
canCoAuthoring: true,
|
||||
customization: {
|
||||
about: false,
|
||||
about: true,
|
||||
feedback: false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1474,8 +1474,12 @@ define([
|
|||
hidePreloader: function() {
|
||||
if (!this._state.customizationDone) {
|
||||
this._state.customizationDone = true;
|
||||
if (this.appOptions.customization && !this.appOptions.isDesktopApp)
|
||||
this.appOptions.customization.about = true;
|
||||
if (this.appOptions.customization) {
|
||||
if (this.appOptions.isDesktopApp)
|
||||
this.appOptions.customization.about = false;
|
||||
else if (!this.appOptions.canBrandingExt)
|
||||
this.appOptions.customization.about = true;
|
||||
}
|
||||
Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationElements);
|
||||
if (this.appOptions.canBrandingExt) {
|
||||
Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationExtElements);
|
||||
|
|
|
|||
|
|
@ -1227,8 +1227,12 @@ define([
|
|||
hidePreloader: function() {
|
||||
if (!this._state.customizationDone) {
|
||||
this._state.customizationDone = true;
|
||||
if (this.appOptions.customization && !this.appOptions.isDesktopApp)
|
||||
this.appOptions.customization.about = true;
|
||||
if (this.appOptions.customization) {
|
||||
if (this.appOptions.isDesktopApp)
|
||||
this.appOptions.customization.about = false;
|
||||
else if (!this.appOptions.canBrandingExt)
|
||||
this.appOptions.customization.about = true;
|
||||
}
|
||||
Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationElements);
|
||||
if (this.appOptions.canBrandingExt) {
|
||||
Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationExtElements);
|
||||
|
|
|
|||
|
|
@ -1365,8 +1365,12 @@ define([
|
|||
hidePreloader: function() {
|
||||
if (!this._state.customizationDone) {
|
||||
this._state.customizationDone = true;
|
||||
if (this.appOptions.customization && !this.appOptions.isDesktopApp)
|
||||
this.appOptions.customization.about = true;
|
||||
if (this.appOptions.customization) {
|
||||
if (this.appOptions.isDesktopApp)
|
||||
this.appOptions.customization.about = false;
|
||||
else if (!this.appOptions.canBrandingExt)
|
||||
this.appOptions.customization.about = true;
|
||||
}
|
||||
Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationElements);
|
||||
if (this.appOptions.canBrandingExt) {
|
||||
Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationExtElements);
|
||||
|
|
|
|||
Loading…
Reference in a new issue