errors displayed under value in playlist editor.
This commit is contained in:
parent
4985524af8
commit
9db7f790ef
|
@ -3,12 +3,12 @@
|
|||
<dd id="spl_cue_in_<?php echo $this->pos; ?>" class="spl_cue_in">
|
||||
<span contenteditable="true" class="spl_text_input"><?php echo $this->cueIn; ?></span>
|
||||
</dd>
|
||||
<dd><span class="edit-error"></span></dd>
|
||||
<dd class="edit-error"><span></span></dd>
|
||||
<dt>Cue Out:</dt>
|
||||
<dd id="spl_cue_out_<?php echo $this->pos; ?>" class="spl_cue_out">
|
||||
<span contenteditable="true" class="spl_text_input"><?php echo $this->cueOut; ?></span>
|
||||
</dd>
|
||||
<dd><span class="edit-error"></span></dd>
|
||||
<dd class="edit-error"><span></span></dd>
|
||||
<dt>Original Length:</dt>
|
||||
<dd id="spl_original"><span><?php echo $this->origLength; ?></span></dd>
|
||||
</dl>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<dd id="spl_fade_out_<?php echo $this->pos; ?>" class="spl_fade_out">
|
||||
<span contenteditable="true" class="spl_text_input"><?php echo $this->fadeOut; ?></span>
|
||||
</dd>
|
||||
<dd><span class="edit-error"></span></dd>
|
||||
<dd class="edit-error"><span></span></dd>
|
||||
<dt>Fade in:</dt>
|
||||
<dd id="spl_fade_in_<?php echo $this->pos + 1; ?>" class="spl_fade_in">
|
||||
<span contenteditable="true" class="spl_text_input"><?php echo $this->fadeIn; ?></span>
|
||||
</dd>
|
||||
<dd><span class="edit-error"></span></dd>
|
||||
<dd class="edit-error"><span></span></dd>
|
||||
</dl>
|
||||
|
|
|
@ -239,12 +239,13 @@
|
|||
margin: 0;
|
||||
|
||||
}
|
||||
.edit-error {
|
||||
dd.edit-error {
|
||||
color:#b80000;
|
||||
margin:0;
|
||||
padding-bottom:0;
|
||||
font-size:12px;
|
||||
display:none;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/*.edit-error:last-child {
|
||||
|
|
|
@ -24,9 +24,11 @@ function changeClipLength(pos, json) {
|
|||
}
|
||||
|
||||
function showError(el, error) {
|
||||
$(el).parent().next().find("span")
|
||||
.empty()
|
||||
.append(error)
|
||||
$(el).parent().next()
|
||||
.find("span")
|
||||
.empty()
|
||||
.append(error)
|
||||
.end()
|
||||
.show();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue