Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
soranmalaie authored Mar 23, 2024
1 parent 801b018 commit 13fc2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2625,9 +2625,9 @@
// Function to create a 5x5 grid of buttons
function createGrid() {
let gridHtml = '<table>';
for (let i = 0; i < 5; i++) {
for (let i = 0; i < 7; i++) {
gridHtml += '<tr>';
for (let j = 0; j < 5; j++) {
for (let j = 0; j < 7; j++) {
gridHtml += `<td><button id="cell_${i}_${j}" style="width:60px; height:60px;" onclick="reveal_button_order[next_table](this, ${i}, ${j})"> </button></td>`;
}
gridHtml += '</tr>';
Expand Down

0 comments on commit 13fc2d9

Please sign in to comment.