We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2274c8e commit 6dcac76Copy full SHA for 6dcac76
example/index.ts
@@ -32,7 +32,7 @@ window.toggleDebugMode = () => {
32
spinners.forEach(spinner => spinner.classList.toggle('stop-animation', debugMode));
33
34
const inputs = [
35
- ...document.getElementsByTagName('input'),
+ ...document.querySelectorAll<HTMLInputElement>('input:not(#debug-mode)'),
36
...document.getElementsByTagName('textarea')
37
];
38
inputs.forEach(input => {
0 commit comments