X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=4ea184287805bdf2a201c7017e7b7837fc6f05dd;hp=e3b3202d14183250bbb840be05803a4481e0d9f8;hb=c94ef784672e9d51359abad6954fd52aef8ec15e;hpb=64038487a71aa51ab6906275f3752c5821c4a931 diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index e3b3202..4ea1842 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -890,21 +890,31 @@ var update_game_list = function(games) { var game_name = document.createTextNode(game['name']); if (game['url'] === backend_url) { + // This game. game_span.appendChild(game_name); + + var score; + if (current_analysis_data['position']['result']) { + score = " (" + current_analysis_data['position']['result'] + ")"; + } else { + score = " (" + format_short_score(current_analysis_data['score']) + ")"; + } + game_span.appendChild(document.createTextNode(score)); } else { + // Some other game. var game_a = document.createElement("a"); game_a.setAttribute("href", "#" + game['id']); game_a.appendChild(game_name); game_span.appendChild(game_a); - } - var score; - if (game['result']) { - score = " (" + game['result'] + ")"; - } else { - score = " (" + format_short_score(game['score']) + ")"; + var score; + if (game['result']) { + score = " (" + game['result'] + ")"; + } else { + score = " (" + format_short_score(game['score']) + ")"; + } + game_span.appendChild(document.createTextNode(score)); } - game_span.appendChild(document.createTextNode(score)); games_div.appendChild(game_span); }