]> git.sesse.net Git - ultimatescore/blobdiff - carousel.js
Remove some unneeded semicolons.
[ultimatescore] / carousel.js
index cf4e5751d23bd17a77832614d731a59167371338..ba0c93effbc03df212d80b94db2e2a3bd3d8e2e6 100644 (file)
@@ -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 = [];