Skip to content

Commit

Permalink
Update mine-sweeper.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroCho authored Jun 13, 2021
1 parent d5a96e1 commit d091483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mine-sweeper.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
} else if (cellData === CODE.FLAG_MINE) { // 깃발 지뢰면
data[rowIndex][cellIndex] = CODE.MINE; // 지뢰로
target.className = '';
// target.textContent = 'X';
target.textContent = '';
} else if (cellData === CODE.NORMAL) { // 닫힌 칸이면
data[rowIndex][cellIndex] = CODE.QUESTION; // 물음표로
target.className = 'question';
Expand Down

0 comments on commit d091483

Please sign in to comment.