From: Steinar H. Gunderson Date: Tue, 22 Mar 2016 21:46:09 +0000 (+0100) Subject: Fix some “???” displaying for unscored lines. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=0a5f18033e5471fca50112bb2061245b0efb7d96 Fix some “???” displaying for unscored lines. --- diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 4e7a2ef..5eecfc0 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -1104,17 +1104,19 @@ var update_board = function() { // The score. if (current_display_line && !current_display_line_is_history) { + var score; if (current_display_line.scores && current_display_line.scores.length > 0) { - var score; for (var i = 0; i < current_display_line.scores.length; ++i) { if (current_display_move < current_display_line.scores[i].first_move) { break; } score = current_display_line.scores[i].score; } + } + if (score) { $("#score").text(format_long_score(score)); } else { - $("#score").text("No score for this move"); + $("#score").text("No score for this line"); } } else if (data['score']) { $("#score").text(format_long_score(data['score']));