X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=f88e1e0dabaa6fbbdbe0bae0fee9ea6c39fddd85;hp=c18349378cd2aac2c592246c9e7d764de5c86da7;hb=80b7eedfd414c122038def7ec9e229766219be92;hpb=511873c4d33587bbbccaa595f015143ecd1b821e diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index c183493..f88e1e0 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -440,7 +440,7 @@ var print_pv = function(line_num, pretty_pv, move_num, toplay, opt_limit, opt_sh ++i; } move_num += i / 2; - } else if (toplay == 'B') { + } else if (toplay == 'B' && pretty_pv.length > 0) { var move = "" + pretty_pv[0] + ""; pv = move_num + '. … ' + move; toplay = 'W'; @@ -601,9 +601,16 @@ var update_board = function(data, num_viewers) { if (data['score'] !== null) { $("#score").text(data['score']); } + if (data['short_score'] !== undefined && data['short_score'] !== null) { + document.title = '(' + data['short_score'] + ') analysis.sesse.net'; + } else { + document.title = 'analysis.sesse.net'; + } // The search stats. - if (data['nodes'] && data['nps'] && data['depth']) { + if (data['tablebase'] == 1) { + $("#searchstats").text("Tablebase result"); + } else if (data['nodes'] && data['nps'] && data['depth']) { var stats = thousands(data['nodes']) + ' nodes, ' + thousands(data['nps']) + ' nodes/sec, depth ' + data['depth'] + ' ply'; if (data['seldepth']) { stats += ' (' + data['seldepth'] + ' selective)'; @@ -617,6 +624,8 @@ var update_board = function(data, num_viewers) { } $("#searchstats").text(stats); + } else { + $("#searchstats").text(""); } // Update the board itself.