]> git.sesse.net Git - remoteglot-book/commitdiff
Fix move numbering when navigating in history.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Dec 2014 23:40:06 +0000 (00:40 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Dec 2014 23:40:06 +0000 (00:40 +0100)
www/js/book.js

index 8f0c24164d4434142ff0cd1ddd958520f2aebab6..9ed5ee5c7ae31491bf8a170252d27cf9b8755fff 100644 (file)
@@ -191,10 +191,10 @@ var show_lines = function(data, game) {
                                tr.appendChild(td);
                                $(td).addClass("move");
                                if (line[j] !== undefined) {
-                                       if (history.length % 2 == 0) {
-                                               $(td).text(((history.length / 2) + 1) + ". ");
+                                       if (move_override % 2 == 0) {
+                                               $(td).text(((move_override / 2) + 1) + ". ");
                                        } else {
-                                               $(td).text(((history.length / 2) + 0.5) + ". …");
+                                               $(td).text(((move_override / 2) + 0.5) + ". …");
                                        }
                                }