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
26819a54
Commit
26819a54
authored
Nov 15, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PE] Fixed Bug 33406.
parent
970d1368
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
apps/presentationeditor/main/app/controller/Main.js
apps/presentationeditor/main/app/controller/Main.js
+1
-4
apps/presentationeditor/main/app/controller/RightMenu.js
apps/presentationeditor/main/app/controller/RightMenu.js
+1
-1
No files found.
apps/presentationeditor/main/app/controller/Main.js
View file @
26819a54
...
...
@@ -1335,11 +1335,8 @@ define([
},
onFocusObject
:
function
(
SelectedObjects
)
{
if
(
SelectedObjects
.
length
>
0
)
{
var
rightpan
=
this
.
getApplication
().
getController
(
'
RightMenu
'
);
// var docPreview = this.getApplication().getController('Viewport').getView('DocumentPreview');
if
(
rightpan
/*&& !docPreview.isVisible()*/
)
rightpan
.
onFocusObject
.
call
(
rightpan
,
SelectedObjects
);
}
if
(
rightpan
)
rightpan
.
onFocusObject
.
call
(
rightpan
,
SelectedObjects
);
},
_onChangeObjectLock
:
function
()
{
...
...
apps/presentationeditor/main/app/controller/RightMenu.js
View file @
26819a54
...
...
@@ -114,7 +114,7 @@ define([
this
.
_settings
[
i
].
locked
=
undefined
;
}
}
this
.
_settings
[
Common
.
Utils
.
documentSettingsType
.
Slide
].
hidden
=
0
;
this
.
_settings
[
Common
.
Utils
.
documentSettingsType
.
Slide
].
hidden
=
(
SelectedObjects
.
length
>
0
)
?
0
:
1
;
for
(
i
=
0
;
i
<
SelectedObjects
.
length
;
i
++
)
{
...
...
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