From 6e7225aa0d5ec2644815cb6b2711998ef51ffea8 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Thu, 9 Jul 2015 21:45:41 -0700 Subject: [PATCH] Change mediaurl keydown to keyup so that the Title box shows correctly --- www/js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/ui.js b/www/js/ui.js index 1bc48136..8b0f4445 100644 --- a/www/js/ui.js +++ b/www/js/ui.js @@ -383,7 +383,7 @@ $("#queue_end").click(queue.bind(this, "end", "url")); $("#ce_queue_next").click(queue.bind(this, "next", "customembed")); $("#ce_queue_end").click(queue.bind(this, "end", "customembed")); -$("#mediaurl").keydown(function(ev) { +$("#mediaurl").keyup(function(ev) { if (ev.keyCode === 13) { queue("end", "url"); } else {