mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-30 08:59:38 +00:00
Prevent password form submission early
Otherwise it might reload the page if we run in to some kind of error.
This commit is contained in:
@@ -1120,6 +1120,9 @@ var UI = {
|
||||
},
|
||||
|
||||
setPassword: function(e) {
|
||||
// Prevent actually submitting the form
|
||||
e.preventDefault();
|
||||
|
||||
var inputElem = document.getElementById('noVNC_password_input');
|
||||
var password = inputElem.value;
|
||||
// Clear the input after reading the password
|
||||
@@ -1128,8 +1131,6 @@ var UI = {
|
||||
UI.reconnect_password = password;
|
||||
document.getElementById('noVNC_password_dlg')
|
||||
.classList.remove('noVNC_open');
|
||||
// Prevent actually submitting the form
|
||||
e.preventDefault();
|
||||
},
|
||||
|
||||
/* ------^-------
|
||||
|
||||
Reference in New Issue
Block a user