mirror of
https://github.com/twofas/2fas-browser-extension.git
synced 2024-11-22 18:19:59 +01:00
#1501 getInputs - FIX digiBTW
This commit is contained in:
parent
f366a693fe
commit
a36c2aa398
@ -68,7 +68,9 @@ const notObservedNodes = [
|
||||
'track',
|
||||
'u',
|
||||
'var',
|
||||
'video'
|
||||
'video',
|
||||
// custom
|
||||
'tool-tip'
|
||||
];
|
||||
|
||||
module.exports = notObservedNodes;
|
||||
|
@ -26,7 +26,9 @@ const inputsSelectors = () => {
|
||||
':not(list)',
|
||||
':not(-moz-read-only)',
|
||||
':not(disabled)',
|
||||
':not([disabled])'
|
||||
':not([disabled])',
|
||||
':not([role="button"])',
|
||||
':not([role="submit"])'
|
||||
].join('');
|
||||
|
||||
const textAreaSelectors = [
|
||||
@ -40,7 +42,7 @@ const inputsSelectors = () => {
|
||||
':not([disabled])'
|
||||
].join('');
|
||||
|
||||
return `input[type="text"]${inputSelectors},input[type="number"]${inputSelectors},input[type="tel"]${inputSelectors},textarea${textAreaSelectors}`;
|
||||
return `input[type="text"]${inputSelectors},input[type="number"]${inputSelectors},input[type="tel"]${inputSelectors},input:not([type])${inputSelectors},textarea${textAreaSelectors}`;
|
||||
};
|
||||
|
||||
module.exports = inputsSelectors;
|
||||
|
Loading…
Reference in New Issue
Block a user