Check input field visibility for TOTP icons

This commit is contained in:
varjolintu 2020-05-21 07:38:39 +03:00
parent 1ef4543f95
commit 9315070f83

View file

@ -1068,6 +1068,10 @@ kpxc.initPasswordGenerator = function(inputs) {
kpxc.initOTPFields = function(inputs) {
for (const i of inputs) {
if (!kpxcFields.isVisible(i)) {
continue;
}
const id = i.getLowerCaseAttribute('id');
const name = i.getLowerCaseAttribute('name');
const autocomplete = i.getLowerCaseAttribute('autocomplete');