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
6c75dbab
Commit
6c75dbab
authored
Dec 13, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 33646
parent
5ea7c596
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
31 additions
and
34 deletions
+31
-34
apps/documenteditor/main/app.js
apps/documenteditor/main/app.js
+1
-0
apps/documenteditor/main/app/view/FileMenu.js
apps/documenteditor/main/app/view/FileMenu.js
+7
-10
apps/documenteditor/main/app_dev.js
apps/documenteditor/main/app_dev.js
+1
-0
apps/presentationeditor/main/app.js
apps/presentationeditor/main/app.js
+1
-0
apps/presentationeditor/main/app/view/FileMenu.js
apps/presentationeditor/main/app/view/FileMenu.js
+9
-12
apps/presentationeditor/main/app_dev.js
apps/presentationeditor/main/app_dev.js
+1
-0
apps/spreadsheeteditor/main/app.js
apps/spreadsheeteditor/main/app.js
+1
-0
apps/spreadsheeteditor/main/app/view/FileMenu.js
apps/spreadsheeteditor/main/app/view/FileMenu.js
+9
-12
apps/spreadsheeteditor/main/app_dev.js
apps/spreadsheeteditor/main/app_dev.js
+1
-0
No files found.
apps/documenteditor/main/app.js
View file @
6c75dbab
...
...
@@ -178,6 +178,7 @@ require([
'
documenteditor/main/app/controller/RightMenu
'
,
'
documenteditor/main/app/controller/LeftMenu
'
,
'
documenteditor/main/app/controller/Main
'
,
'
documenteditor/main/app/view/FileMenuPanels
'
,
'
documenteditor/main/app/view/ParagraphSettings
'
,
'
documenteditor/main/app/view/HeaderFooterSettings
'
,
'
documenteditor/main/app/view/ImageSettings
'
,
...
...
apps/documenteditor/main/app/view/FileMenu.js
View file @
6c75dbab
...
...
@@ -178,8 +178,6 @@ define([
);
var
me
=
this
;
this
.
panels
=
{};
require
([
'
documenteditor/main/app/view/FileMenuPanels
'
],
function
(){
me
.
panels
=
{
// 'saveas' : (new DE.Views.FileMenuPanels.ViewSaveAs({menu:me})).render(),
'
opts
'
:
(
new
DE
.
Views
.
FileMenuPanels
.
Settings
({
menu
:
me
})).
render
(),
...
...
@@ -189,7 +187,6 @@ define([
};
me
.
$el
.
find
(
'
.content-box
'
).
hide
();
});
return
this
;
},
...
...
apps/documenteditor/main/app_dev.js
View file @
6c75dbab
...
...
@@ -168,6 +168,7 @@ require([
'
documenteditor/main/app/controller/RightMenu
'
,
'
documenteditor/main/app/controller/LeftMenu
'
,
'
documenteditor/main/app/controller/Main
'
,
'
documenteditor/main/app/view/FileMenuPanels
'
,
'
documenteditor/main/app/view/ParagraphSettings
'
,
'
documenteditor/main/app/view/HeaderFooterSettings
'
,
'
documenteditor/main/app/view/ImageSettings
'
,
...
...
apps/presentationeditor/main/app.js
View file @
6c75dbab
...
...
@@ -172,6 +172,7 @@ require([
'
presentationeditor/main/app/controller/RightMenu
'
,
'
presentationeditor/main/app/controller/LeftMenu
'
,
'
presentationeditor/main/app/controller/Main
'
,
'
presentationeditor/main/app/view/FileMenuPanels
'
,
'
presentationeditor/main/app/view/ParagraphSettings
'
,
'
presentationeditor/main/app/view/ImageSettings
'
,
'
presentationeditor/main/app/view/ShapeSettings
'
,
...
...
apps/presentationeditor/main/app/view/FileMenu.js
View file @
6c75dbab
...
...
@@ -175,8 +175,6 @@ define([
);
var
me
=
this
;
this
.
panels
=
{};
require
([
'
presentationeditor/main/app/view/FileMenuPanels
'
],
function
(){
me
.
panels
=
{
'
saveas
'
:
(
new
PE
.
Views
.
FileMenuPanels
.
ViewSaveAs
({
menu
:
me
})).
render
(),
'
opts
'
:
(
new
PE
.
Views
.
FileMenuPanels
.
Settings
({
menu
:
me
})).
render
(),
...
...
@@ -186,7 +184,6 @@ define([
};
me
.
$el
.
find
(
'
.content-box
'
).
hide
();
});
return
this
;
},
...
...
apps/presentationeditor/main/app_dev.js
View file @
6c75dbab
...
...
@@ -163,6 +163,7 @@ require([
'
presentationeditor/main/app/controller/RightMenu
'
,
'
presentationeditor/main/app/controller/LeftMenu
'
,
'
presentationeditor/main/app/controller/Main
'
,
'
presentationeditor/main/app/view/FileMenuPanels
'
,
'
presentationeditor/main/app/view/ParagraphSettings
'
,
'
presentationeditor/main/app/view/ImageSettings
'
,
'
presentationeditor/main/app/view/ShapeSettings
'
,
...
...
apps/spreadsheeteditor/main/app.js
View file @
6c75dbab
...
...
@@ -174,6 +174,7 @@ require([
'
spreadsheeteditor/main/app/controller/LeftMenu
'
,
'
spreadsheeteditor/main/app/controller/Main
'
,
'
spreadsheeteditor/main/app/controller/Print
'
,
'
spreadsheeteditor/main/app/view/FileMenuPanels
'
,
'
spreadsheeteditor/main/app/view/ParagraphSettings
'
,
'
spreadsheeteditor/main/app/view/ImageSettings
'
,
'
spreadsheeteditor/main/app/view/ChartSettings
'
,
...
...
apps/spreadsheeteditor/main/app/view/FileMenu.js
View file @
6c75dbab
...
...
@@ -162,8 +162,6 @@ define([
);
var
me
=
this
;
this
.
panels
=
{};
require
([
'
spreadsheeteditor/main/app/view/FileMenuPanels
'
],
function
(){
me
.
panels
=
{
'
saveas
'
:
(
new
SSE
.
Views
.
FileMenuPanels
.
ViewSaveAs
({
menu
:
me
})).
render
(),
'
opts
'
:
(
new
SSE
.
Views
.
FileMenuPanels
.
Settings
({
menu
:
me
})).
render
(),
...
...
@@ -173,7 +171,6 @@ define([
};
me
.
$el
.
find
(
'
.content-box
'
).
hide
();
});
return
this
;
},
...
...
apps/spreadsheeteditor/main/app_dev.js
View file @
6c75dbab
...
...
@@ -164,6 +164,7 @@ require([
'
spreadsheeteditor/main/app/controller/LeftMenu
'
,
'
spreadsheeteditor/main/app/controller/Main
'
,
'
spreadsheeteditor/main/app/controller/Print
'
,
'
spreadsheeteditor/main/app/view/FileMenuPanels
'
,
'
spreadsheeteditor/main/app/view/ParagraphSettings
'
,
'
spreadsheeteditor/main/app/view/ImageSettings
'
,
'
spreadsheeteditor/main/app/view/ChartSettings
'
,
...
...
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