Skip to content

Commit

Permalink
dvsdv
Browse files Browse the repository at this point in the history
  • Loading branch information
byMrSoul committed Jul 14, 2024
1 parent d5fe94c commit fd91f4e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions commands.html
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,17 @@ <h2>Player Commands</h2>
}
});
}

function toggleInfo(container) {
var info = container.nextElementSibling;
if (info.style.display === "none" || info.style.display === "") {
info.style.display = "block";
} else {
info.style.display = "none";
}
}


</script>
</body>
</html>

0 comments on commit fd91f4e

Please sign in to comment.