fix: add shootout indicator

This commit is contained in:
2024-02-25 01:17:04 -05:00
parent a1352869ad
commit daabae1e49

View File

@@ -166,9 +166,12 @@ function generateGameBoxes(games, state) {
else if (game['Period'] == 3 ) {
html += '3rd';
}
else {
else if (game['Period'] == 4 ) {
html += 'OT';
}
else {
html += 'SO';
}
html += '</div>';
html += '<div class="live-time">' + game['Time Remaining'] + '</div>';
}