MAPG-235 hide restrictions information if there are no restrictions for the challenge

This commit is contained in:
Balázs Vigh 2021-05-22 21:00:54 +02:00
parent a5238234d2
commit 567602c749
2 changed files with 5 additions and 3 deletions

View File

@ -348,8 +348,6 @@ const GameType = Object.freeze({ 'SINGLE': 0, 'MULTI': 1, 'CHALLENGE': 2 });
return; return;
} }
var restrictionsForDisplay = []; var restrictionsForDisplay = [];
if (Game.restrictions.timeLimit) { if (Game.restrictions.timeLimit) {
restrictionsForDisplay.push('time limit per ' + Game.restrictions.timeLimitType); restrictionsForDisplay.push('time limit per ' + Game.restrictions.timeLimitType);
@ -366,6 +364,10 @@ const GameType = Object.freeze({ 'SINGLE': 0, 'MULTI': 1, 'CHALLENGE': 2 });
} }
} }
if (restrictionsForDisplay.length == 0) {
return;
}
// create restrictions span for header // create restrictions span for header
var restrictions = document.createElement('span'); var restrictions = document.createElement('span');
restrictions.setAttribute('id', 'restrictions'); restrictions.setAttribute('id', 'restrictions');

View File

@ -30,7 +30,7 @@
@section(subheader) @section(subheader)
<span id="mapName" class="bold">Loading map...</span><!-- <span id="mapName" class="bold">Loading map...</span><!--
--><span>Round <span id="currentRound" class="bold"></span></span><!-- --><span id="roundContainer">Round <span id="currentRound" class="bold"></span></span><!--
--><span>Score <span id="currentScoreSum" class="bold"></span></span> --><span>Score <span id="currentScoreSum" class="bold"></span></span>
@endsection @endsection