From: Steinar H. Gunderson Date: Fri, 14 Nov 2014 00:40:03 +0000 (+0100) Subject: Add some JavaScript changes that seemingly were not committed earlier. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=07df5186917c7eebde1fe9f1cee1919c5c1bc398;hp=0d83fa679dc2bb17d40e34779c60abbd511275ef Add some JavaScript changes that seemingly were not committed earlier. --- 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.