From b28ebfda10de142de58a9b724455181599ddac60 Mon Sep 17 00:00:00 2001 From: emkael Date: Sat, 7 Jan 2023 20:37:13 +0100 Subject: Missing semicolons --- playoff.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playoff.js b/playoff.js index b456a43..b1b67cd 100644 --- a/playoff.js +++ b/playoff.js @@ -97,7 +97,7 @@ var playoff = { hTo: [], vTo: [canvas.width, canvas.height, canvas.width, 0], midpoints: [] - } + }; }, from: function(from, to, hOffset, vOffset) { var lines = this.template(); @@ -200,7 +200,7 @@ var playoff = { (lines.vTo[0] + lines.vTo[2]) / 2, (lines.vTo[1] + lines.vTo[3]) / 2 ] - ] + ]; for (var h in lines.hTo) { lines.hTo[h][2] = Math.max( lines.hTo[h][2], @@ -246,6 +246,6 @@ var playoff = { } } -} +}; playoff.run(); -- cgit v1.2.3