From 33b105b9b80ede56c8c93261934d86758d9fef54 Mon Sep 17 00:00:00 2001 From: j Date: Mon, 22 Jul 2019 11:11:25 +0200 Subject: [PATCH] avoid password autocompltee --- static/js/preferencesDialog.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/preferencesDialog.js b/static/js/preferencesDialog.js index aa74d003..70af78f2 100644 --- a/static/js/preferencesDialog.js +++ b/static/js/preferencesDialog.js @@ -47,6 +47,9 @@ pandora.ui.preferencesDialog = function() { validate: pandora.validateNewPassword, width: 320 }) + .attr({ + autocomplete: 'new-password' + }) .bindEvent({ validate: function(data) { data.valid && pandora.api.editPreferences({password: data.value});