diff options
author | emkael <emkael@tlen.pl> | 2023-01-07 20:37:13 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2023-01-07 20:37:13 +0100 |
commit | b28ebfda10de142de58a9b724455181599ddac60 (patch) | |
tree | d36e15a872b7fbc891c04b62e4f8fbabb3eafab3 | |
parent | 0aaa101880adfa24fb0381824dbb3a0c7afe0757 (diff) |
Missing semicolons
-rw-r--r-- | playoff.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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(); |