Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ringtailsoftware committed Dec 3, 2024
1 parent a729913 commit 38de5c4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/zoridor.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,6 @@ export class Zoridor {
for (let y=0;y<8;y++) {
for (let x=0;x<8;x++) {
let td = document.getElementById(`cell${x*3+2},${y*3+2}`);
console.log(`cell${x*3+2},${y*3+2}`);
td.style['background-color'] = 'red';
td.onmouseout = function() {
that.mouseOut(x, y); // x,y ignored
Expand Down

0 comments on commit 38de5c4

Please sign in to comment.