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