1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

Update autofill.js

Removed data-lpignore.
This commit is contained in:
Tecsi Aron
2021-06-02 21:09:30 +03:00
committed by GitHub
parent d303e61745
commit 1081f505d6

View File

@@ -555,7 +555,7 @@
var els = [];
try {
var elsList = theDoc.querySelectorAll('input:not([type="hidden"]):not([type="submit"]):not([type="reset"])' +
':not([type="button"]):not([type="image"]):not([type="file"]):not([data-lpignore="false"]):not(data-bwignore="true"), select');
':not([type="button"]):not([type="image"]):not([type="file"]):not(data-bwignore="true"), select');
els = Array.prototype.slice.call(elsList);
} catch (e) { }