summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2023-01-07 20:37:13 +0100
committeremkael <emkael@tlen.pl>2023-01-07 20:37:13 +0100
commitb28ebfda10de142de58a9b724455181599ddac60 (patch)
treed36e15a872b7fbc891c04b62e4f8fbabb3eafab3
parent0aaa101880adfa24fb0381824dbb3a0c7afe0757 (diff)
Missing semicolons
-rw-r--r--playoff.js6
1 files 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();