From 357c7cde09240aaefeb53f12ac5746c56f7a91f6 Mon Sep 17 00:00:00 2001 From: Sandy Currier Date: Thu, 7 Mar 2024 02:30:25 -0500 Subject: [PATCH] chaser --- voting.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/voting.html b/voting.html index bd99123..399b74b 100644 --- a/voting.html +++ b/voting.html @@ -755,8 +755,13 @@

Your RCV selection:

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 = "  "; + col1.appendChild(spoilButton); + col2.appendChild(voteButton); + row1.appendChild(col1); + row1.appendChild(col2); voteTable.appendChild(row1); rootElement.appendChild(voteTable); }