From: Steinar H. Gunderson Date: Tue, 22 Mar 2016 21:29:21 +0000 (+0100) Subject: Fix (?) an issue where going from a display line all the back the root would hit... X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=5a9dbd3f72666ce02396c30d1b74dae3ab32d40b Fix (?) an issue where going from a display line all the back the root would hit a null. --- diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 60468bd..f4bf795 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -765,7 +765,7 @@ var update_refutation_lines = function() { // Find out where the lines start from. var base_line = []; - var base_scores = []; + var base_scores = display_lines[1].scores; var start_display_move_num = 0; if (hash_refutation_lines) { base_line = current_display_line.pretty_pv.slice(0, current_display_move + 1); @@ -1150,7 +1150,7 @@ var update_board = function() { // Print the PV. $("#pvtitle").text("PV:"); - var scores = [{ first_move: 0, score: data['score'] }]; + var scores = [{ first_move: -1, score: data['score'] }]; $("#pv").html(add_pv(data['position']['fen'], data['pv_pretty'], data['position']['move_num'], data['position']['toplay'], scores, 0)); // Update the PV arrow.