]> git.sesse.net Git - remoteglot/commitdiff
Fix some “???” displaying for unscored lines.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 22 Mar 2016 21:46:09 +0000 (22:46 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 22 Mar 2016 21:46:09 +0000 (22:46 +0100)
www/js/remoteglot.js

index 4e7a2efc262d73e2d6a4dac6aeb5ea11dc410a66..5eecfc0fc869e97f024e7ebc6ba33be542fbb21d 100644 (file)
@@ -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']));