add input with autocomplete="email"

for example, soundcloud
This commit is contained in:
ngxson
2020-07-20 18:54:30 +02:00
parent 3c425b3bd8
commit 328a2cffab
+1 -1
View File
@@ -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);