From 340290fa1d6a53d30a38b6604bcacef5940c4c52 Mon Sep 17 00:00:00 2001 From: Solly Ross Date: Mon, 24 Aug 2015 16:41:00 -0400 Subject: [PATCH] UI: Fix typo preventing reconnect after password There was a typo in ui.js preventing the use of the connect button after a password was entered. --- include/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ui.js b/include/ui.js index 929e37f8..b2938d4d 100644 --- a/include/ui.js +++ b/include/ui.js @@ -625,7 +625,7 @@ var UI; UI.rfb.sendPassword($D('noVNC_password').value); //Reset connect button. $D('noVNC_connect_button').value = "Connect"; - $D('noVNC_connect_button').onclick = UI.Connect; + $D('noVNC_connect_button').onclick = UI.connect; //Hide connection panel. UI.toggleConnectPanel(); return false;