This commit is contained in:
yoannchb-pro
2023-03-20 21:32:56 -04:00
committed by GitHub
parent 7ed40cd5d7
commit 771bc727ac
+3
View File
@@ -2,12 +2,15 @@
for (const option of document.querySelectorAll("option")) {
option.selected = false;
option.disabled = false;
option.closest("select").disabled = false;
}
for (const input of document.querySelectorAll(
'input[type="radio"], input[type="checkbox"]'
)) {
input.checked = false;
input.disabled = false;
}
for (const icon of document.querySelectorAll(".text-danger, .text-success")) {