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
0293d46a
Commit
0293d46a
authored
Jul 26, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PE] Fix Bug 32561.
parent
9297531d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
apps/presentationeditor/main/app/view/SlideSettings.js
apps/presentationeditor/main/app/view/SlideSettings.js
+6
-3
No files found.
apps/presentationeditor/main/app/view/SlideSettings.js
View file @
0293d46a
...
...
@@ -1054,6 +1054,8 @@ define([
}
this
.
cmbEffectType
.
setDisabled
(
arr
.
length
<
1
||
this
.
_stateDisabled
.
effects
);
this
.
numDuration
.
setDisabled
(
arr
.
length
<
1
||
this
.
_stateDisabled
.
effects
);
this
.
btnPreview
.
setDisabled
(
arr
.
length
<
1
||
this
.
_stateDisabled
.
effects
);
},
onEffectNameSelect
:
function
(
combo
,
record
)
{
...
...
@@ -1486,10 +1488,11 @@ define([
this
.
_stateDisabled
.
background
=
background
;
}
if
(
effects
!==
this
.
_stateDisabled
.
effects
)
{
var
length
=
this
.
cmbEffectType
.
store
.
length
;
this
.
cmbEffectName
.
setDisabled
(
effects
);
this
.
cmbEffectType
.
setDisabled
(
effects
);
this
.
numDuration
.
setDisabled
(
effects
);
this
.
btnPreview
.
setDisabled
(
effects
);
this
.
cmbEffectType
.
setDisabled
(
length
<
1
||
effects
);
this
.
numDuration
.
setDisabled
(
length
<
1
||
effects
);
this
.
btnPreview
.
setDisabled
(
length
<
1
||
effects
);
this
.
_stateDisabled
.
effects
=
effects
;
}
if
(
timing
!==
this
.
_stateDisabled
.
timing
)
{
...
...
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