[DE] Added option customization->statusBar to config for hiding status bar.
This commit is contained in:
parent
58ead9e451
commit
48453ecda4
|
@ -112,6 +112,7 @@
|
||||||
rightMenu: true,
|
rightMenu: true,
|
||||||
toolbar: true,
|
toolbar: true,
|
||||||
header: true,
|
header: true,
|
||||||
|
statusBar: true,
|
||||||
autosave: true,
|
autosave: true,
|
||||||
forcesave: false,
|
forcesave: false,
|
||||||
commentAuthorOnly: false
|
commentAuthorOnly: false
|
||||||
|
|
|
@ -69,7 +69,8 @@ define([
|
||||||
toolbar: '#viewport #toolbar',
|
toolbar: '#viewport #toolbar',
|
||||||
leftMenu: '#viewport #left-menu, #viewport #id-toolbar-full-placeholder-btn-settings, #viewport #id-toolbar-short-placeholder-btn-settings',
|
leftMenu: '#viewport #left-menu, #viewport #id-toolbar-full-placeholder-btn-settings, #viewport #id-toolbar-short-placeholder-btn-settings',
|
||||||
rightMenu: '#viewport #right-menu',
|
rightMenu: '#viewport #right-menu',
|
||||||
header: '#viewport #header'
|
header: '#viewport #header',
|
||||||
|
statusBar: '#statusbar'
|
||||||
};
|
};
|
||||||
|
|
||||||
Common.localStorage.setId('text');
|
Common.localStorage.setId('text');
|
||||||
|
|
|
@ -1751,6 +1751,9 @@ define([
|
||||||
// if (this.mode.isDesktopApp || this.mode.canBrandingExt && this.mode.customization && this.mode.customization.header === false)
|
// if (this.mode.isDesktopApp || this.mode.canBrandingExt && this.mode.customization && this.mode.customization.header === false)
|
||||||
// this.mnuitemHideTitleBar.hide();
|
// this.mnuitemHideTitleBar.hide();
|
||||||
|
|
||||||
|
if (this.mode.canBrandingExt && this.mode.customization && this.mode.customization.statusBar===false)
|
||||||
|
this.mnuitemHideStatusBar.hide();
|
||||||
|
|
||||||
this.btnMarkers.setMenu(
|
this.btnMarkers.setMenu(
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
items: [
|
items: [
|
||||||
|
|
Loading…
Reference in a new issue