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
cd86b759
Commit
cd86b759
authored
Oct 28, 2016
by
Alexey Golubev
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'hotfix/v4.1.7'
parents
4dd21ea5
218385d3
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
apps/common/main/lib/component/Menu.js
apps/common/main/lib/component/Menu.js
+1
-1
apps/documenteditor/main/app/view/RightMenu.js
apps/documenteditor/main/app/view/RightMenu.js
+1
-1
apps/presentationeditor/main/app.js
apps/presentationeditor/main/app.js
+2
-2
apps/presentationeditor/main/app/view/RightMenu.js
apps/presentationeditor/main/app/view/RightMenu.js
+1
-1
apps/presentationeditor/main/app_dev.js
apps/presentationeditor/main/app_dev.js
+2
-2
apps/spreadsheeteditor/main/app/controller/RightMenu.js
apps/spreadsheeteditor/main/app/controller/RightMenu.js
+1
-1
apps/spreadsheeteditor/main/app/view/RightMenu.js
apps/spreadsheeteditor/main/app/view/RightMenu.js
+1
-1
No files found.
apps/common/main/lib/component/Menu.js
View file @
cd86b759
...
...
@@ -125,7 +125,7 @@ define([
if
(
active
&&
active
.
length
>
0
)
{
_
.
each
(
active
,
function
(
menu
)
{
menu
.
hide
();
if
(
menu
)
menu
.
hide
();
});
return
true
;
}
...
...
apps/documenteditor/main/app/view/RightMenu.js
View file @
cd86b759
...
...
@@ -280,7 +280,7 @@ define([
var
target_pane
=
$
(
"
.right-panel
"
);
target_pane
.
find
(
'
> .active
'
).
removeClass
(
'
active
'
);
_
.
each
(
this
.
_settings
,
function
(
item
){
this
.
_settings
.
forEach
(
function
(
item
){
if
(
item
.
btn
.
isActive
())
item
.
btn
.
toggle
(
false
,
true
);
});
...
...
apps/presentationeditor/main/app.js
View file @
cd86b759
...
...
@@ -154,8 +154,8 @@ require([
'
Main
'
,
'
Common.Controllers.Fonts
'
/** coauthoring begin **/
,
'
Common.Controllers.Chat
'
,
'
Common.Controllers.Comments
'
,
,
'
Common.Controllers.Chat
'
,
'
Common.Controllers.Comments
'
/** coauthoring end **/
,
'
Common.Controllers.Plugins
'
,
'
Common.Controllers.ExternalDiagramEditor
'
...
...
apps/presentationeditor/main/app/view/RightMenu.js
View file @
cd86b759
...
...
@@ -277,7 +277,7 @@ define([
clearSelection
:
function
()
{
var
target_pane
=
$
(
"
.right-panel
"
);
target_pane
.
find
(
'
> .active
'
).
removeClass
(
'
active
'
);
_
.
each
(
this
.
_settings
,
function
(
item
){
this
.
_settings
.
forEach
(
function
(
item
){
if
(
item
.
btn
.
isActive
())
item
.
btn
.
toggle
(
false
,
true
);
});
...
...
apps/presentationeditor/main/app_dev.js
View file @
cd86b759
...
...
@@ -145,8 +145,8 @@ require([
'
Main
'
,
'
Common.Controllers.Fonts
'
/** coauthoring begin **/
,
'
Common.Controllers.Chat
'
,
'
Common.Controllers.Comments
'
,
,
'
Common.Controllers.Chat
'
,
'
Common.Controllers.Comments
'
/** coauthoring end **/
,
'
Common.Controllers.Plugins
'
,
'
Common.Controllers.ExternalDiagramEditor
'
...
...
apps/spreadsheeteditor/main/app/controller/RightMenu.js
View file @
cd86b759
...
...
@@ -126,7 +126,7 @@ define([
if
(
this
.
_state
.
prevDisabled
!=
need_disable
)
{
this
.
_state
.
prevDisabled
=
need_disable
;
_
.
each
(
this
.
_settings
,
function
(
item
){
this
.
_settings
.
forEach
(
function
(
item
){
item
.
panel
.
setLocked
(
need_disable
);
});
}
...
...
apps/spreadsheeteditor/main/app/view/RightMenu.js
View file @
cd86b759
...
...
@@ -240,7 +240,7 @@ define([
clearSelection
:
function
()
{
var
target_pane
=
$
(
"
.right-panel
"
);
target_pane
.
find
(
'
> .active
'
).
removeClass
(
'
active
'
);
_
.
each
(
this
.
_settings
,
function
(
item
){
this
.
_settings
.
forEach
(
function
(
item
){
if
(
item
.
btn
.
isActive
())
item
.
btn
.
toggle
(
false
,
true
);
});
...
...
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