scroll to game beginning: better fix
[vchess.git] / client / src / components / MoveList.vue
index 228971a..da70e34 100644 (file)
@@ -109,7 +109,10 @@ export default {
       // $nextTick to wait for table > tr to be rendered
       this.$nextTick(() => {
         let curMove = document.querySelector(".td.highlight-lm");
-        if (curMove) {
+        if (!curMove && this.moves.length > 0)
+          // Cursor is before game beginning, and some moves were made:
+          curMove = document.querySelector(".moves-list > .tr:first-child > .td");
+        if (!!curMove) {
           curMove.scrollIntoView({
             behavior: "auto",
             block: "nearest"