[go: nahoru, domu]

Skip to content

Commit

Permalink
UI: Fix typo preventing reconnect after password
Browse files Browse the repository at this point in the history
There was a typo in ui.js preventing the use of the connect button
after a password was entered.
  • Loading branch information
DirectXMan12 committed Aug 24, 2015
1 parent abf2b09 commit 340290f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 340290f

Please sign in to comment.