Update autofill.js

Removed `="true"`
This commit is contained in:
Tecsi Aron 2021-06-02 22:28:07 +03:00 committed by GitHub
parent 1081f505d6
commit cf59d24c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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-bwignore="true"), select');
':not([type="button"]):not([type="image"]):not([type="file"]):not([data-bwignore]), select');
els = Array.prototype.slice.call(elsList);
} catch (e) { }