Skip to content

Commit

Permalink
Some updates to fix some of the problems in #977
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSmith-LT committed May 11, 2022
1 parent cf62087 commit 899d901
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -42,7 +42,7 @@ button::-moz-focus-inner {

/* indicates when a square has been selected */
#puzzle .selected {
background-color: orange;
background-color: orange !important;
}

/* indicates that the square is part of a word that has been found */
Expand Down Expand Up @@ -95,5 +95,5 @@ button::-moz-focus-inner {
*/
#puzzle .highlight {
background-color: yellow !important;
color: black;
color: black !important;
}
Expand Up @@ -223,9 +223,9 @@
$('.' + curWord).addClass('wordFound');
}

if (wordList.length === 0) {
/*if (wordList.length === 0) {
$('.puzzleSquare').addClass('complete');
}
}*/
}

// reset the turn
Expand Down

0 comments on commit 899d901

Please sign in to comment.