From daabae1e493464c2ec0bf8baeb2157e97e743f76 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 25 Feb 2024 01:17:04 -0500 Subject: [PATCH] fix: add shootout indicator --- app/static/script.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/static/script.js b/app/static/script.js index d683d3d..dcf9ab3 100644 --- a/app/static/script.js +++ b/app/static/script.js @@ -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 += ''; html += '
' + game['Time Remaining'] + '
'; }