mirror of https://github.com/calzoneman/sync.git
Change mediaurl keydown to keyup so that the Title box shows correctly
This commit is contained in:
parent
b2687f49a8
commit
6e7225aa0d
|
@ -383,7 +383,7 @@ $("#queue_end").click(queue.bind(this, "end", "url"));
|
||||||
$("#ce_queue_next").click(queue.bind(this, "next", "customembed"));
|
$("#ce_queue_next").click(queue.bind(this, "next", "customembed"));
|
||||||
$("#ce_queue_end").click(queue.bind(this, "end", "customembed"));
|
$("#ce_queue_end").click(queue.bind(this, "end", "customembed"));
|
||||||
|
|
||||||
$("#mediaurl").keydown(function(ev) {
|
$("#mediaurl").keyup(function(ev) {
|
||||||
if (ev.keyCode === 13) {
|
if (ev.keyCode === 13) {
|
||||||
queue("end", "url");
|
queue("end", "url");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue