Merge pull request #1505 from ONLYOFFICE/fix/pe-transitions
[PE] Add icon to transitions tab
This commit is contained in:
commit
8aa3b4ef40
|
@ -8,7 +8,7 @@
|
|||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-top: -2px;
|
||||
display: inline-block;
|
||||
background-repeat: no-repeat;
|
||||
vertical-align: middle;
|
||||
|
|
|
@ -151,8 +151,8 @@
|
|||
<div class="separator long"></div>
|
||||
<div class="group small">
|
||||
<div class="elset font-normal">
|
||||
<label id="transit-duration"></label>
|
||||
<span id="transit-spin-duration" class="btn-slot text spinner" style="margin-left: 10px;"></span>
|
||||
<span class="btn-slot text" id="transit-duration"></span>
|
||||
<span id="transit-spin-duration" class="btn-slot text spinner"></span>
|
||||
</div>
|
||||
<div class="elset">
|
||||
<span class="btn-slot text" id="transit-button-preview"></span>
|
||||
|
@ -165,7 +165,7 @@
|
|||
</div>
|
||||
<div class="elset font-normal">
|
||||
<span class="btn-slot text" id="transit-checkbox-delay"></span>
|
||||
<div id="transit-spin-delay" class="btn-slot text spinner" style="margin-left: 10px;"></div>
|
||||
<div id="transit-spin-delay" class="btn-slot text spinner" style="margin-left: 5px;"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="separator long"></div>
|
||||
|
|
|
@ -233,6 +233,14 @@ define([
|
|||
});
|
||||
this.lockedControls.push(this.numDuration);
|
||||
|
||||
this.lblDuration = new Common.UI.Label({
|
||||
el: this.$el.find('#transit-duration'),
|
||||
iconCls: 'toolbar__icon animation-duration',
|
||||
caption: this.strDuration,
|
||||
lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock]
|
||||
});
|
||||
this.lockedControls.push(this.lblDuration);
|
||||
|
||||
this.numDelay = new Common.UI.MetricSpinner({
|
||||
el: this.$el.find('#transit-spin-delay'),
|
||||
step: 1,
|
||||
|
@ -270,7 +278,6 @@ define([
|
|||
|
||||
Common.Utils.lockControls(PE.enumLock.disableOnStart, true, {array: this.lockedControls});
|
||||
|
||||
this.$el.find('#transit-duration').text(this.strDuration);
|
||||
Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this));
|
||||
},
|
||||
|
||||
|
@ -335,7 +342,6 @@ define([
|
|||
this.renderComponent('#transit-spin-duration', this.numDuration);
|
||||
this.renderComponent('#transit-spin-delay', this.numDelay);
|
||||
this.renderComponent('#transit-checkbox-startonclick', this.chStartOnClick);
|
||||
this.$el.find("#label-duration").innerText = this.strDuration;
|
||||
this.$el.find("#label-delay").innerText = this.strDelay;
|
||||
return this.$el;
|
||||
},
|
||||
|
@ -417,6 +423,7 @@ define([
|
|||
this.btnParameters.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None);
|
||||
this.btnPreview.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None);
|
||||
this.numDuration.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None);
|
||||
this.lblDuration.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None);
|
||||
}
|
||||
return (selectedElement)?selectedElement.value:-1;
|
||||
},
|
||||
|
@ -429,7 +436,6 @@ define([
|
|||
strDuration: 'Duration',
|
||||
strDelay: 'Delay',
|
||||
strStartOnClick: 'Start On Click',
|
||||
|
||||
textNone: 'None',
|
||||
textFade: 'Fade',
|
||||
textPush: 'Push',
|
||||
|
|
Loading…
Reference in a new issue