add input with autocomplete="email"
for example, soundcloud
This commit is contained in:
@@ -35,7 +35,7 @@ const InputTools = {
|
||||
queryEmailInputAndApply(target, actionFunction) {
|
||||
if (!target.querySelectorAll) return;
|
||||
const elements = target.querySelectorAll(
|
||||
"input[type='email'],input[name*='email']"
|
||||
"input[type='email'],input[name*='email'],input[autocomplete='email']"
|
||||
);
|
||||
for (const element of elements) {
|
||||
actionFunction(element);
|
||||
|
||||
Reference in New Issue
Block a user