Skip to content

Commit

Permalink
chaser
Browse files Browse the repository at this point in the history
  • Loading branch information
windoverwater committed Mar 7, 2024
1 parent 21aa662 commit 357c7cd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions voting.html
Original file line number Diff line number Diff line change
Expand Up @@ -755,8 +755,13 @@ <h3>Your RCV selection:</h3>
const voteTable = document.createElement("table");
voteTable.classList.add("tableStyle");
const row1 = document.createElement("tr");
row1.appendChild(spoilButton);
row1.appendChild(voteButton);
const col1 = document.createElement("td");
const col2 = document.createElement("td");
col2.innerHTML = "&nbsp&nbsp";
col1.appendChild(spoilButton);
col2.appendChild(voteButton);
row1.appendChild(col1);
row1.appendChild(col2);
voteTable.appendChild(row1);
rootElement.appendChild(voteTable);
}
Expand Down

0 comments on commit 357c7cd

Please sign in to comment.