Skip to content

Commit 8bdd422

Browse files
committed
Fix lint warnings
1 parent d1b2641 commit 8bdd422

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_js/disjointRectangles.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SentientWebsite.DisjointRectangles = function () {
1919
"rgba(24,224,138,0.6)",
2020
"rgba(67,74,253,0.6)",
2121
"rgba(153,153,153,0.6)",
22-
"rgba(248,116,243,0.6)",
22+
"rgba(248,116,243,0.6)"
2323
];
2424

2525
self.initialize = function () {
@@ -60,10 +60,10 @@ SentientWebsite.DisjointRectangles = function () {
6060
var h = height * scale + 1;
6161

6262
$(container).prepend(
63-
"<canvas id='disjoint-rectangles-example' width='"+w+"' height='"+h+"'></canvas>"
63+
"<canvas id='rectangles-example' width='"+w+"' height='"+h+"'></canvas>"
6464
);
6565

66-
canvas = $("#disjoint-rectangles-example")[0];
66+
canvas = $("#rectangles-example")[0];
6767
context = canvas.getContext("2d");
6868
context.translate(0.5, 0.5);
6969
canvas.addEventListener("mousedown", handleEvent);

0 commit comments

Comments
 (0)