From 989c91f1d1f1b60c97d7e6d0d82bb361d690eb30 Mon Sep 17 00:00:00 2001 From: ctrlaltca Date: Tue, 18 Oct 2016 14:47:54 +0200 Subject: [PATCH] [ci skip] Don't send connection form when enter is pressed on the host autocompleter (#2225) --- webclient/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webclient/index.html b/webclient/index.html index 7ed18e98..aa538d74 100755 --- a/webclient/index.html +++ b/webclient/index.html @@ -209,7 +209,7 @@ Loading cockatrice web client... } $("#loginnow").click(connect); - $("#host, #port, #user, #pass").keydown(function(e) { + $("#port, #user, #pass").keydown(function(e) { if (e.keyCode == 13) { connect(); } });