comment updates

This commit is contained in:
Kyle Spearrin 2016-11-26 14:41:08 -05:00
parent 3e2663e9d4
commit 9bf2c4f54c
1 changed files with 3 additions and 2 deletions

View File

@ -33,7 +33,7 @@ function initAutofill() {
loadPasswordFields(false); loadPasswordFields(false);
if (!passwordFields.length) { if (!passwordFields.length) {
// not able to find any visible password fields. maybe there are some "hidden" ones? // not able to find any viewable password fields. maybe there are some "hidden" ones?
loadPasswordFields(true); loadPasswordFields(true);
} }
@ -66,7 +66,7 @@ function initAutofill() {
username = findUsernameField(pf, false); username = findUsernameField(pf, false);
if (!username) { if (!username) {
// not able to find any visible username fields. maybe there are some "hidden" ones? // not able to find any viewable username fields. maybe there are some "hidden" ones?
username = findUsernameField(pf, true); username = findUsernameField(pf, true);
} }
@ -104,6 +104,7 @@ function initAutofill() {
username = findUsernameFieldWithoutForm(pf, false); username = findUsernameFieldWithoutForm(pf, false);
if (!username) { if (!username) {
// not able to find any viewable username fields. maybe there are some "hidden" ones?
username = findUsernameFieldWithoutForm(pf, true); username = findUsernameFieldWithoutForm(pf, true);
} }