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.
This commit is contained in:
parent
abf2b09ea7
commit
340290fa1d
|
@ -625,7 +625,7 @@ var UI;
|
||||||
UI.rfb.sendPassword($D('noVNC_password').value);
|
UI.rfb.sendPassword($D('noVNC_password').value);
|
||||||
//Reset connect button.
|
//Reset connect button.
|
||||||
$D('noVNC_connect_button').value = "Connect";
|
$D('noVNC_connect_button').value = "Connect";
|
||||||
$D('noVNC_connect_button').onclick = UI.Connect;
|
$D('noVNC_connect_button').onclick = UI.connect;
|
||||||
//Hide connection panel.
|
//Hide connection panel.
|
||||||
UI.toggleConnectPanel();
|
UI.toggleConnectPanel();
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue