This commit is contained in:
onezplpl 2024-08-02 06:44:35 -04:00
parent ea61811963
commit 117bdab039
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3

View file

@ -42,7 +42,7 @@ function main(init = false) {
input.id = 'color_' + char; input.id = 'color_' + char;
input.value = getRandomColor(); input.value = getRandomColor();
sec.appendChild(input); sec.appendChild(input);
input.onchange = main; input.onchange = () => main(false);
} }
} }