From 0a5f18033e5471fca50112bb2061245b0efb7d96 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 22 Mar 2016 22:46:09 +0100 Subject: [PATCH] =?utf8?q?Fix=20some=20=E2=80=9C=3F=3F=3F=E2=80=9D=20displ?= =?utf8?q?aying=20for=20unscored=20lines.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- www/js/remoteglot.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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'])); -- 2.39.2