Skip to content

Commit

Permalink
Remove a console.log that sliipped through
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSmith-LT committed May 3, 2022
1 parent e71410a commit 2e31bd9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1316,7 +1316,7 @@
document.getElementById(coordinates[coor]).readOnly = true;
}
var incorrectWords = [];
incorrectIndices.forEach(function(index){ incorrectWords.push(words_in[index]);});console.log(incorrectWords);
incorrectIndices.forEach(function(index){ incorrectWords.push(words_in[index]);});
$(".li-clue > p").each(function(index, element){
var word = $(element).text();
if (incorrectWords.indexOf(word) !== -1) {
Expand Down

0 comments on commit 2e31bd9

Please sign in to comment.