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 90a8fa6 commit bb53997Copy full SHA for bb53997
index.html
@@ -100,7 +100,7 @@ <h2>Errors</h2>
100
var timeout = null;
101
source.addEventListener("input", () => {
102
if (timeout) clearTimeout(timeout);
103
- setTimeout(async () => {
+ timeout = setTimeout(async () => {
104
console.textContent = "";
105
errors.textContent = "";
106
try {
@@ -110,7 +110,7 @@ <h2>Errors</h2>
110
output.innerHTML = "";
111
throw e;
112
}
113
- }, 500);
+ }, 100);
114
});
115
116
main();
0 commit comments