From 8bee1afad1a30309687a9a4290d320daeaa81453 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Fri, 27 Feb 2015 13:10:38 -0600 Subject: [PATCH] Fix issue with channel settings not being updated --- 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 66a34840..deb79303 100644 --- a/www/js/ui.js +++ b/www/js/ui.js @@ -546,7 +546,7 @@ $(".cs-checkbox").change(function () { socket.emit("setOptions", data); }); -$(".cs-textbox").keydown(function () { +$(".cs-textbox").keyup(function () { var box = $(this); var key = box.attr("id").replace("cs-", ""); var value = box.val();