18 lines
954 B
PHTML
18 lines
954 B
PHTML
<div data-fadeout="<?php echo $this->item1Url; ?>" data-fadein="<?php echo $this->item2Url; ?>"><input type="button" class="pl-waveform-fades-btn" value="Show Waveform"></input></div>
|
|
<dl id="spl_editor" class="inline-list">
|
|
<?php if ($this->item1Type == 0) {?>
|
|
<dt><? echo _("Fade out: "); ?><span class='spl_cue_hint'><? echo _("(ss.t)")?></span></dt>
|
|
<dd id="spl_fade_out_<?php echo $this->item1; ?>" class="spl_fade_out">
|
|
<span contenteditable="true" class="spl_text_input"><?php echo $this->fadeOut; ?></span>
|
|
</dd>
|
|
<dd class="edit-error"></dd>
|
|
<?php }
|
|
if ($this->item2Type == 0) {?>
|
|
<dt><? echo _("Fade in: "); ?><span class='spl_cue_hint'><? echo _("(ss.t)")?></span></dt>
|
|
<dd id="spl_fade_in_<?php echo $this->item2; ?>" class="spl_fade_in">
|
|
<span contenteditable="true" class="spl_text_input"><?php echo $this->fadeIn; ?></span>
|
|
</dd>
|
|
<dd class="edit-error"></dd>
|
|
<?php }?>
|
|
</dl>
|