Skip to content

Commit

Permalink
Don't disable showing the final score during or the match intros afte…
Browse files Browse the repository at this point in the history
…r a timeout.
  • Loading branch information
patfair committed May 23, 2024
1 parent 08f9ee6 commit 1d25f5e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions static/js/match_play.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ const handleArenaStatus = function(data) {
case "TIMEOUT_ACTIVE":
$("#showOverlay").prop("disabled", true);
$("#introRadio").prop("disabled", true);
$("#showFinalScore").prop("disabled", true);
$("#scoreRadio").prop("disabled", true);
$("#showFinalScore").prop("disabled", false);
$("#scoreRadio").prop("disabled", false);
$("#startMatch").prop("disabled", true);
$("#abortMatch").prop("disabled", false);
$("#signalReset").prop("disabled", true);
Expand All @@ -237,10 +237,10 @@ const handleArenaStatus = function(data) {
$("#startTimeout").prop("disabled", true);
break;
case "POST_TIMEOUT":
$("#showOverlay").prop("disabled", true);
$("#introRadio").prop("disabled", true);
$("#showFinalScore").prop("disabled", true);
$("#scoreRadio").prop("disabled", true);
$("#showOverlay").prop("disabled", false);
$("#introRadio").prop("disabled", false);
$("#showFinalScore").prop("disabled", false);
$("#scoreRadio").prop("disabled", false);
$("#startMatch").prop("disabled", true);
$("#abortMatch").prop("disabled", true);
$("#signalReset").prop("disabled", true);
Expand Down

0 comments on commit 1d25f5e

Please sign in to comment.