X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=570484c0882e93188d82678ae2f4687fcae58c0c;hb=6c297793e9c8888e6a33bb2c72c852c876652d87;hp=9d83e55783168f841119c8666a91333be43e1f32;hpb=f21b4339a81e83eaaa36175948607299a98a8400;p=remoteglot diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 9d83e55..570484c 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -600,14 +600,17 @@ var update_board = function(data, num_viewers) { // The score. if (data['score'] !== null) { $("#score").text(data['score']); - var short_score = data['score'].replace(/Score: */, ""); - document.title = '(' + short_score + ') analysis.sesse.net'; + } + if (data['short_score'] !== undefined) { + 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)'; @@ -621,6 +624,8 @@ var update_board = function(data, num_viewers) { } $("#searchstats").text(stats); + } else { + $("#searchstats").text(""); } // Update the board itself.