]> git.sesse.net Git - remoteglot/blobdiff - www/js/remoteglot.js
Version bump.
[remoteglot] / www / js / remoteglot.js
index 4e7a2efc262d73e2d6a4dac6aeb5ea11dc410a66..a49fa8da7a24303d4c03df15a76036558e214097 100644 (file)
@@ -7,7 +7,7 @@
  * @type {Number}
  * @const
  * @private */
-var SCRIPT_VERSION = 2016032201;
+var SCRIPT_VERSION = 2016032202;
 
 /**
  * The current backend URL.
@@ -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']));