aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleJD.ts
blob: 98d798817afe52437900e9aa306c329c8a8ddcaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
* show/hide judge controls
* @param {number} show either a 1 or a 0
*/
export const handleJD = (args: string[]) => {
    if (Number(args[1]) === 1) {
        document.getElementById("judge_action")!.style.display = "inline-table";
        document.getElementById("no_action")!.style.display = "none";
    } else {
        document.getElementById("judge_action")!.style.display = "none";
        document.getElementById("no_action")!.style.display = "inline-table";
    }
}