X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=a49fa8da7a24303d4c03df15a76036558e214097;hp=4e7a2efc262d73e2d6a4dac6aeb5ea11dc410a66;hb=9adc7fcb0912ea7fd3ec11f179107b401f91a247;hpb=aae509c47c3031f26f12b5cc084d3f9b48543dd7 diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 4e7a2ef..a49fa8d 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -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']));