mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-27 10:12:07 +08:00
Hide tab back settings for Ie11
This commit is contained in:
@ -1709,7 +1709,7 @@ define([
|
||||
}
|
||||
Common.Utils.InternalSettings.set("settings-tab-style", value || 'tab');
|
||||
value = Common.UI.FeaturesManager.getInitValue('tabBackground', true);
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("de-settings-tab-background")) { // get from local storage
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("de-settings-tab-background")) { // get from local storage
|
||||
value = Common.localStorage.getItem("de-settings-tab-background");
|
||||
} else if (value === undefined && this.editorConfig.customization && (typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.toolbarNoTabs) {
|
||||
value = 'toolbar';
|
||||
|
||||
@ -281,7 +281,7 @@ define([
|
||||
// Common.Utils.InternalSettings.set("de-settings-quick-print-button", value);
|
||||
// if (this.header && this.header.btnPrintQuick)
|
||||
// this.header.btnPrintQuick[value ? 'show' : 'hide']();
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
this.onTabBackgroundChange();
|
||||
this.header.changeLogo();
|
||||
}
|
||||
|
||||
@ -914,7 +914,7 @@ define([
|
||||
if ( !Common.UI.Themes.available() ) {
|
||||
$('tr.themes, tr.themes + tr.divider', this.el).hide();
|
||||
}
|
||||
$('tr.tab-background', this.el)[Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
$('tr.tab-background', this.el)[!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
if (mode.compactHeader) {
|
||||
$('tr.quick-access', this.el).hide();
|
||||
}
|
||||
@ -1066,7 +1066,7 @@ define([
|
||||
//Common.localStorage.setBool("de-settings-quick-print-button", this.chQuickPrint.isChecked());
|
||||
|
||||
// Common.localStorage.setBool("de-settings-compact-header", this.chCompactHeader.isChecked());
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
Common.localStorage.setItem("de-settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
Common.Utils.InternalSettings.set("settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
}
|
||||
|
||||
@ -1305,7 +1305,7 @@ define([
|
||||
}
|
||||
Common.Utils.InternalSettings.set("settings-tab-style", value || 'tab');
|
||||
value = Common.UI.FeaturesManager.getInitValue('tabBackground', true);
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("pdfe-settings-tab-background")) { // get from local storage
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("pdfe-settings-tab-background")) { // get from local storage
|
||||
value = Common.localStorage.getItem("pdfe-settings-tab-background");
|
||||
} else if (value === undefined && this.editorConfig.customization && (typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.toolbarNoTabs) {
|
||||
value = 'toolbar';
|
||||
|
||||
@ -260,7 +260,7 @@ define([
|
||||
// Common.Utils.InternalSettings.set("pdfe-settings-quick-print-button", value);
|
||||
// if (this.header && this.header.btnPrintQuick)
|
||||
// this.header.btnPrintQuick[value ? 'show' : 'hide']();
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
this.onTabBackgroundChange();
|
||||
this.header.changeLogo();
|
||||
}
|
||||
|
||||
@ -715,7 +715,7 @@ define([
|
||||
$('tr.comments', this.el)[mode.canCoAuthoring && !mode.isForm ? 'show' : 'hide']();
|
||||
$('tr.ui-rtl', this.el)[mode.uiRtl ? 'show' : 'hide']();
|
||||
/** coauthoring end **/
|
||||
$('tr.tab-background', this.el)[Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
$('tr.tab-background', this.el)[!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
$('tr.quick-print', this.el)[mode.canQuickPrint && !(mode.compactHeader && mode.isEdit) ? 'show' : 'hide']();
|
||||
if ( !Common.UI.Themes.available() ) {
|
||||
$('tr.themes, tr.themes + tr.divider', this.el).hide();
|
||||
@ -823,7 +823,7 @@ define([
|
||||
var isRtlChanged = this.chRTL.$el.is(':visible') && Common.localStorage.getBool("ui-rtl", Common.Locale.isCurrentLanguageRtl()) !== this.chRTL.isChecked();
|
||||
Common.localStorage.setBool("ui-rtl", this.chRTL.isChecked());
|
||||
//Common.localStorage.setBool("pdfe-settings-quick-print-button", this.chQuickPrint.isChecked());
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
Common.localStorage.setItem("pdfe-settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
Common.Utils.InternalSettings.set("settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
}
|
||||
|
||||
@ -1333,7 +1333,7 @@ define([
|
||||
}
|
||||
Common.Utils.InternalSettings.set("settings-tab-style", value || 'tab');
|
||||
value = Common.UI.FeaturesManager.getInitValue('tabBackground', true);
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("pe-settings-tab-background")) { // get from local storage
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("pe-settings-tab-background")) { // get from local storage
|
||||
value = Common.localStorage.getItem("pe-settings-tab-background");
|
||||
} else if (value === undefined && this.editorConfig.customization && (typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.toolbarNoTabs) {
|
||||
value = 'toolbar';
|
||||
|
||||
@ -304,7 +304,7 @@ define([
|
||||
// Common.Utils.InternalSettings.set("pe-settings-quick-print-button", value);
|
||||
// if (this.header && this.header.btnPrintQuick)
|
||||
// this.header.btnPrintQuick[value ? 'show' : 'hide']();
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
this.onTabBackgroundChange();
|
||||
this.header.changeLogo();
|
||||
}
|
||||
|
||||
@ -723,7 +723,7 @@ define([
|
||||
$('tr.spellcheck', this.el)[mode.isEdit && Common.UI.FeaturesManager.canChange('spellcheck') ? 'show' : 'hide']();
|
||||
$('tr.quick-print', this.el)[mode.canQuickPrint && !(mode.compactHeader && mode.isEdit) ? 'show' : 'hide']();
|
||||
$('tr.ui-rtl', this.el)[mode.uiRtl ? 'show' : 'hide']();
|
||||
$('tr.tab-background', this.el)[Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
$('tr.tab-background', this.el)[!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
if ( !Common.UI.Themes.available() ) {
|
||||
$('tr.themes, tr.themes + tr.divider', this.el).hide();
|
||||
}
|
||||
@ -841,7 +841,7 @@ define([
|
||||
var isRtlChanged = this.chRTL.$el.is(':visible') && Common.localStorage.getBool("ui-rtl", Common.Locale.isCurrentLanguageRtl()) !== this.chRTL.isChecked();
|
||||
Common.localStorage.setBool("ui-rtl", this.chRTL.isChecked());
|
||||
//Common.localStorage.setBool("pe-settings-quick-print-button", this.chQuickPrint.isChecked());
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
Common.localStorage.setItem("pe-settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
Common.Utils.InternalSettings.set("settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
}
|
||||
|
||||
@ -1399,7 +1399,7 @@ define([
|
||||
}
|
||||
Common.Utils.InternalSettings.set("settings-tab-style", value || 'tab');
|
||||
value = Common.UI.FeaturesManager.getInitValue('tabBackground', true);
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("sse-settings-tab-background")) { // get from local storage
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) && Common.localStorage.itemExists("sse-settings-tab-background")) { // get from local storage
|
||||
value = Common.localStorage.getItem("sse-settings-tab-background");
|
||||
} else if (value === undefined && this.editorConfig.customization && (typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.toolbarNoTabs) {
|
||||
value = 'toolbar';
|
||||
|
||||
@ -291,7 +291,7 @@ define([
|
||||
// Common.Utils.InternalSettings.set("sse-settings-quick-print-button", value);
|
||||
// if (this.header && this.header.btnPrintQuick)
|
||||
// this.header.btnPrintQuick[value ? 'show' : 'hide']();
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
this.onTabBackgroundChange();
|
||||
this.header.changeLogo();
|
||||
}
|
||||
|
||||
@ -896,7 +896,7 @@ define([
|
||||
$('tr.live-viewer', this.el)[mode.canLiveView && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide']();
|
||||
$('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show']();
|
||||
$('tr.quick-print', this.el)[mode.canQuickPrint && !(mode.compactHeader && mode.isEdit) ? 'show' : 'hide']();
|
||||
$('tr.tab-background', this.el)[Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
$('tr.tab-background', this.el)[!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true) ? 'show' : 'hide']();
|
||||
if ( !Common.UI.Themes.available() ) {
|
||||
$('tr.themes, tr.themes + tr.divider', this.el).hide();
|
||||
}
|
||||
@ -1105,7 +1105,7 @@ define([
|
||||
var isRtlChanged = this.chRTL.$el.is(':visible') && Common.localStorage.getBool("ui-rtl", Common.Locale.isCurrentLanguageRtl()) !== this.chRTL.isChecked();
|
||||
Common.localStorage.setBool("ui-rtl", this.chRTL.isChecked());
|
||||
//Common.localStorage.setBool("sse-settings-quick-print-button", this.chQuickPrint.isChecked());
|
||||
if (Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
if (!Common.Utils.isIE && Common.UI.FeaturesManager.canChange('tabBackground', true)) {
|
||||
Common.localStorage.setItem("sse-settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
Common.Utils.InternalSettings.set("settings-tab-background", this.chTabBack.isChecked() ? 'toolbar' : 'header');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user