errors displayed under value in playlist editor.

This commit is contained in:
naomiaro 2011-02-07 23:32:36 -05:00
parent 4985524af8
commit 9db7f790ef
4 changed files with 11 additions and 8 deletions

View file

@ -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();
}