Skip to content

Commit

Permalink
improve tracking terms for bingo stamps obtained
Browse files Browse the repository at this point in the history
  • Loading branch information
sayomaki committed Aug 9, 2024
1 parent cf07f62 commit c173ae7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bingo/bingo.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ for (let i = 0; i < 4; i++) {
cell.dataset.row = i;
cell.dataset.col = j;
bingoBoard.appendChild(cell);

}
}

Expand Down Expand Up @@ -65,7 +64,7 @@ function processQRCode(data, scanned = false) {
if (cell) {
if (!scanned) {
const name = names[parseInt(rowIndex) * 4 + parseInt(colIndex)];
umami.track('Bingo Stamp', {name: name});
umami.track('Bingo Stamp - ' + name);
}

cell.classList.add('marked');
Expand Down

0 comments on commit c173ae7

Please sign in to comment.