arrows switch properly for scheduled description.

This commit is contained in:
naomiaro 2011-01-15 20:53:31 -05:00
parent 86a4998e0a
commit e3cf552a22
4 changed files with 72 additions and 30 deletions

View file

@ -1,11 +1,11 @@
<li id="sp_<?php echo $this->id ?>" class="ui-widget-content">
<div><?php echo $this->name ?></div>
<div><?php echo $this->description ?></div>
<div><?php echo $this->length ?></div>
<span><?php echo $this->name ?></span>
<span><?php echo $this->length ?></span>
<div>
<span>Creator: <?php echo $this->creator ?></span>
<?php if($this->state === "edited") : ?>
<span>Editing: <?php echo $this->login ?></span>
<?php endif ?>
</div>
<div><?php echo $this->description ?></div>
</li>

View file

@ -1,12 +1,15 @@
<div id="schedule_playlist_dialog">
<input id="schedule_playlist_search" type="text"></input>
<div>
<div>
<input id="schedule_playlist_search" type="text"></input>
<ul id="schedule_playlist_choice"></ul>
<ul id="schedule_playlist_chosen"></ul>
</div>
<div id="show_time_info">
<span id="show_time_filled"><?php echo $this->timeFilled; ?></span>
<div id="show_progressbar"></div>
<span id="show_length"><?php echo $this->showLength; ?></span>
<div>
<div>Items In This Show:</div>
<ul id="schedule_playlist_chosen"></ul>
<div id="show_time_info">
<span id="show_time_filled" class="time"><?php echo $this->timeFilled; ?></span>
<div id="show_progressbar"></div>
<span id="show_length" class="time"><?php echo $this->showLength; ?></span>
</div>
</div>
</div>