summaryrefslogtreecommitdiff
path: root/interactor/game.js
diff options
context:
space:
mode:
Diffstat (limited to 'interactor/game.js')
-rw-r--r--interactor/game.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/interactor/game.js b/interactor/game.js
index bf2b97f..a9ecf2e 100644
--- a/interactor/game.js
+++ b/interactor/game.js
@@ -143,7 +143,7 @@ function addMoveLog(player, mv, captures) {
log.appendChild(tr);
- tr.scrollIntoView(false);
+ document.getElementById("movelog_container").scrollTop = 99999999;
}
function addServerLog(msg) {
@@ -201,6 +201,8 @@ function humanMove(mv) {
return;
}
+ document.getElementById("aifirst").classList.add("invisible");
+
if (aiplayer == null) {
aiplayer = -onturn;
}