Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
b91abf29
Commit
b91abf29
authored
Mar 22, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added option customization->statusBar to config for hiding status bar.
parent
3e88e72c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
4 deletions
+12
-4
apps/api/documents/api.js
apps/api/documents/api.js
+1
-0
apps/documenteditor/main/app/controller/Main.js
apps/documenteditor/main/app/controller/Main.js
+2
-1
apps/documenteditor/main/app/view/Toolbar.js
apps/documenteditor/main/app/view/Toolbar.js
+3
-1
apps/presentationeditor/main/app/controller/Main.js
apps/presentationeditor/main/app/controller/Main.js
+2
-1
apps/presentationeditor/main/app/view/Toolbar.js
apps/presentationeditor/main/app/view/Toolbar.js
+2
-0
apps/spreadsheeteditor/main/app/controller/Main.js
apps/spreadsheeteditor/main/app/controller/Main.js
+2
-1
No files found.
apps/api/documents/api.js
View file @
b91abf29
...
@@ -112,6 +112,7 @@
...
@@ -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
...
...
apps/documenteditor/main/app/controller/Main.js
View file @
b91abf29
...
@@ -69,7 +69,8 @@ define([
...
@@ -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
'
);
...
...
apps/documenteditor/main/app/view/Toolbar.js
View file @
b91abf29
...
@@ -1206,7 +1206,9 @@ define([
...
@@ -1206,7 +1206,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
:
[
...
...
apps/presentationeditor/main/app/controller/Main.js
View file @
b91abf29
...
@@ -69,7 +69,8 @@ define([
...
@@ -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
(
'
presentation
'
);
Common
.
localStorage
.
setId
(
'
presentation
'
);
...
...
apps/presentationeditor/main/app/view/Toolbar.js
View file @
b91abf29
...
@@ -1159,6 +1159,8 @@ define([
...
@@ -1159,6 +1159,8 @@ 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
.
mnuZoomOut
=
new
Common
.
UI
.
Button
({
this
.
mnuZoomOut
=
new
Common
.
UI
.
Button
({
el
:
$
(
'
#id-menu-zoom-out
'
),
el
:
$
(
'
#id-menu-zoom-out
'
),
...
...
apps/spreadsheeteditor/main/app/controller/Main.js
View file @
b91abf29
...
@@ -74,7 +74,8 @@ define([
...
@@ -74,7 +74,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
(
'
table
'
);
Common
.
localStorage
.
setId
(
'
table
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment