X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;fp=www%2Fjs%2Fremoteglot.js;h=54fc90b46afc5d5e818ddb87bd9a7cfaa41b33b6;hp=c2c9d0644e4303d1e447ef0653594b495054f0c4;hb=f120f5172ba09d12928acc7228e4aa331cbdc190;hpb=150b9d5d62f41abe385b55034db50fb7332988b9 diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index c2c9d06..54fc90b 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -1114,15 +1114,6 @@ function update_board() { headline = 'Analysis'; } - // Credits, where applicable. Note that we don't want the footer to change a lot - // when e.g. viewing history, so if any of these changed during the game, - // use the current one still. - if (current_data['using_lomonosov']) { - document.getElementById("lomonosov").style.display = null; - } else { - document.getElementById("lomonosov").style.display = 'none'; - } - // Credits: The engine name/version. if (current_data['engine'] && current_data['engine']['name'] !== null) { document.getElementById("engineid").textContent = current_data['engine']['name']; @@ -1269,8 +1260,6 @@ function update_board() { // The search stats. if (data['searchstats']) { document.getElementById("searchstats").textContent = data['searchstats']; - } else if (data['tablebase'] == 1) { - document.getElementById("searchstats").textContent = "Tablebase result"; } else if (data['nodes'] && data['nps'] && data['depth']) { let stats = thousands(data['nodes']) + ' nodes, ' + thousands(data['nps']) + ' nodes/sec, depth ' + data['depth'] + ' ply'; if (data['seldepth']) {