aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleJD.ts
blob: a66bf2a8d8184905440474c8c48c23c2ceeee9bc (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";
  }
};