Skip to content

Commit 12f7b9a

Browse files
cc fixes
1 parent 2571d56 commit 12f7b9a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/res/js/match/match.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -417,16 +417,16 @@
417417
}
418418

419419
/**
420-
* Toggle hand visibility
420+
* 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.
421429
*/
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-
*/
430430
function toggleChat() {
431431
$("#chat-container").toggle()
432432
$("#toggle-chat-button").html(($("#chat-container").is(":visible") ? "Hide" : "Show") + " Chat")

0 commit comments

Comments
 (0)