Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
smerriman committed May 18, 2024
1 parent ce82de1 commit 5b6d277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -5995,8 +5995,8 @@ function addGibDiv(div,suit,card,tricks,goal) {
if (gibDivs[suit][card].parentNode != div) {
div.appendChild(gibDivs[suit][card]);
if (tricks >= goal) {
gibDivs[suit][c].style.background = '#B0D57E';
gibDivs[suit][c].style.color = '#000000';
gibDivs[suit][card].style.background = '#B0D57E';
gibDivs[suit][card].style.color = '#000000';
if (tricks == goal) {
div.lastChild.innerHTML = '=';
} else {
Expand Down

0 comments on commit 5b6d277

Please sign in to comment.