aboutsummaryrefslogtreecommitdiff
path: root/p/scripts/extra.js
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-02-07 13:43:37 +0100
committerGravatar GitHub <noreply@github.com> 2022-02-07 13:43:37 +0100
commit133e0d61db4d316806686243e735961166113e1c (patch)
tree9c5cbdd5d06d1967073ce54682f90d9b65783a28 /p/scripts/extra.js
parent2fd8ce686778cdb1f7c4ad23e9989fdf558d72ed (diff)
Improved: Focus and show password buttons (#4205)
* CSS + JS * fixed the quotes
Diffstat (limited to 'p/scripts/extra.js')
-rw-r--r--p/scripts/extra.js34
1 files changed, 21 insertions, 13 deletions
diff --git a/p/scripts/extra.js b/p/scripts/extra.js
index ec98b41bb..00a460917 100644
--- a/p/scripts/extra.js
+++ b/p/scripts/extra.js
@@ -98,20 +98,28 @@ function init_crypto_form() {
}
// </crypto form (Web login)>
+function showPW(ev) {
+ if (ev.buttons || ev.key == ' ' || ev.key.toUpperCase() == 'ENTER') {
+ const passwordField = document.getElementById(this.getAttribute('data-toggle'));
+ passwordField.setAttribute('type', 'text');
+ this.classList.add('active');
+ }
+ return false;
+}
+
+function hidePW() {
+ const passwordField = document.getElementById(this.getAttribute('data-toggle'));
+ passwordField.setAttribute('type', 'password');
+ this.classList.remove('active');
+ return false;
+}
+
function init_password_observers() {
- document.querySelectorAll('.toggle-password').forEach(function (a) {
- a.onmousedown = function (ev) {
- const passwordField = document.getElementById(this.getAttribute('data-toggle'));
- passwordField.setAttribute('type', 'text');
- this.classList.add('active');
- return false;
- };
- a.onmouseup = function (ev) {
- const passwordField = document.getElementById(this.getAttribute('data-toggle'));
- passwordField.setAttribute('type', 'password');
- this.classList.remove('active');
- return false;
- };
+ document.querySelectorAll('.toggle-password').forEach(function (btn) {
+ btn.addEventListener('mousedown', showPW);
+ btn.addEventListener('keydown', showPW);
+ btn.addEventListener('mouseup', hidePW);
+ btn.addEventListener('keyup', hidePW);
});
}