From 9ce8d87fb7c6e7173f563f55e8ab9120f095181b Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 22 Feb 2020 10:59:51 +0100 Subject: [PATCH] Remove some unneeded semicolons. --- carousel.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/carousel.js b/carousel.js index cf4e575..ba0c93e 100644 --- a/carousel.js +++ b/carousel.js @@ -21,19 +21,21 @@ function addheading(carousel, colspan, content) tr.appendChild(th); thead.appendChild(tr); carousel.appendChild(thead); -}; +} + function addtd(tr, className, content) { let td = document.createElement("td"); td.appendChild(document.createTextNode(content)); td.className = className; tr.appendChild(td); -}; +} + function addth(tr, className, content) { let th = document.createElement("th"); th.appendChild(document.createTextNode(content)); th.className = className; tr.appendChild(th); -}; +} function subrank_partitions(games, parts, start_rank, tiebreakers, func) { let result = []; -- 2.39.2