We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2571d56 commit 12f7b9aCopy full SHA for 12f7b9a
src/res/js/match/match.js
@@ -417,16 +417,16 @@
417
}
418
419
/**
420
- * Toggle hand visibility
+ * Toggle hand visibility.
421
+ */
422
+ function toggleHand() {
423
+ $("#hand-container").toggle()
424
+ $("#toggle-hand-button").html(($("#hand-container").is(":visible") ? "Hide" : "Show") + " Hand")
425
+ }
426
+
427
+ /**
428
+ * Toggle chat visibility.
429
*/
- function toggleHand() {
- $("#hand-container").toggle()
- $("#toggle-hand-button").html(($("#hand-container").is(":visible") ? "Hide" : "Show") + " Hand")
- }
-
- /**
- * Toggle chat visibility
- */
430
function toggleChat() {
431
$("#chat-container").toggle()
432
$("#toggle-chat-button").html(($("#chat-container").is(":visible") ? "Hide" : "Show") + " Chat")
0 commit comments