Skip to content

Commit

Permalink
Fix snail hiding bug
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyMcGinn committed Jun 30, 2023
1 parent e63d88d commit c05eec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function setup() {
if (snail == "none" || snail == "no" || snail == "disabled") {
document.getElementsByClassName("snail")[0].style.display = "none";
} else {
document.getElementsByClassName("snail").style.display = '';
document.getElementsByClassName("snail").style.display = "block";
}
}
if (!showMessage()) {
Expand Down

1 comment on commit c05eec4

@WesleyMcGinn
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This did not work! Now the snail is just gone all the time!

Please sign in to comment.