]> git.sesse.net Git - remoteglot-book/commitdiff
A small tweak in navigation.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Dec 2014 23:42:16 +0000 (00:42 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Dec 2014 23:42:16 +0000 (00:42 +0100)
www/js/book.js

index 9ed5ee5c7ae31491bf8a170252d27cf9b8755fff..fff27fc1f0a7a4756481a0725fcb55040ccc7ff0 100644 (file)
@@ -216,9 +216,13 @@ var show_lines = function(data, game) {
 }
 
 var make_move = function(move) {
-       history.length = move_override;
-       history.push(move);
-       move_override = history.length;
+       if (move_override < history.length && history[move_override] == move) {
+               // User effectively only moved forward in history.
+               ++move_override;
+       } else {
+               history.push(move);
+               move_override = history.length;
+       }
        update();
 }
 window['make_move'] = make_move;