cue/fade editor done for new playlist builder

This commit is contained in:
Naomi 2011-01-17 13:55:43 -05:00
parent 70f7cb6edc
commit 6376a25463
8 changed files with 249 additions and 17 deletions

View file

@ -1,7 +1,7 @@
<button id="spl_new">New</button>
<?php if (isset($this->pl)) : ?>
<button id="spl_delete">Delete</button>
<button id="spl_close">Close</button>
<button id="spl_close">Done Editing</button>
<?php endif; ?>
<?php if (isset($this->pl)) : ?>
@ -16,6 +16,7 @@
<?php endif; ?>
</ul>
<div id="spl_editor"></div>
<div id="spl_error" class="ui-state-error ui-corner-all" style="display: none"></div>
<?php else : ?>
<div>No open playlist</div>
<?php endif; ?>

View file

@ -1,8 +1,8 @@
<div class="spl_cue_in">
<div id="spl_cue_in_<?php echo $this->pos; ?>" class="spl_cue_in">
<span>Cue In:</span>
<span><?php echo $this->cueIn; ?></span>
<span class="spl_text_input"><?php echo $this->cueIn; ?></span>
</div>
<div class="spl_cue_out">
<div id="spl_cue_out_<?php echo $this->pos; ?>" class="spl_cue_out">
<span>Cue Out:</span>
<span><?php echo $this->cueOut; ?></span>
<span class="spl_text_input"><?php echo $this->cueOut; ?></span>
</div>

View file

@ -1,8 +1,8 @@
<div class="spl_fade_out">
<div id="spl_fade_out_<?php echo $this->pos; ?>" class="spl_fade_out">
<span>Fade Out:</span>
<span><?php echo $this->fadeOut; ?></span>
<span class="spl_text_input"><?php echo $this->fadeOut; ?></span>
</div>
<div class="spl_fade_in">
<div id="spl_fade_in_<?php echo $this->pos; ?>" class="spl_fade_in">
<span>Fade In:</span>
<span><?php echo $this->fadeIn; ?></span>
<span class="spl_text_input"><?php echo $this->fadeIn; ?></span>
</div>