work around chrome autocomplete for passwords

This commit is contained in:
j 2019-07-30 13:10:21 +02:00
parent 0147b56d69
commit 0dc1f22abf
1 changed files with 6 additions and 1 deletions

View File

@ -43,7 +43,7 @@ pandora.ui.preferencesDialog = function() {
id: 'password',
label: Ox._('New Password'),
labelWidth: 120,
type: 'password',
type: 'text',
validate: pandora.validateNewPassword,
width: 320
})
@ -51,6 +51,11 @@ pandora.ui.preferencesDialog = function() {
autocomplete: 'new-password'
})
.bindEvent({
focus: function(data) {
this.options({
type: 'password'
})
},
validate: function(data) {
data.valid && pandora.api.editPreferences({password: data.value});
}