Skip to content

Commit

Permalink
Minor HTML fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
qewer33 committed Dec 11, 2022
1 parent 126cc6d commit 668e407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h3 id="output-header">API OUTPUT</h3>
let radios = document.getElementsByClassName("radio");
let outputText = document.getElementById("output-text");

for (var i = 0, max = radios.length; i < max; i++) {
for (let i = 0; i < radios.length; i++) {
radios[i].onclick = function () {
action = this.value;
if (this.value === "delete") urlInput.style.display = "none";
Expand Down

0 comments on commit 668e407

Please sign in to comment.