]> git.sesse.net Git - remoteglot/blobdiff - www/js/remoteglot.js
Add some JavaScript changes that seemingly were not committed earlier.
[remoteglot] / www / js / remoteglot.js
index c18349378cd2aac2c592246c9e7d764de5c86da7..570484c0882e93188d82678ae2f4687fcae58c0c 100644 (file)
@@ -601,9 +601,16 @@ var update_board = function(data, num_viewers) {
        if (data['score'] !== null) {
                $("#score").text(data['score']);
        }
+       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)';
@@ -617,6 +624,8 @@ var update_board = function(data, num_viewers) {
                }
 
                $("#searchstats").text(stats);
+       } else {
+               $("#searchstats").text("");
        }
 
        // Update the board itself.