X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=b238758c82e0cba2b89453b234d660228cca3230;hb=e71161fbfffe53b0f4b174e0467cdd98cc70b7b0;hp=28d0d0096bd0656706bea53c6ee42767ffc3c99e;hpb=41c80bb63b85b2696d3925c10784c3d7bb5d2aa3;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 28d0d009..b238758c 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -3,69 +3,85 @@ div #scoreInfo(v-if="score!='*'") p {{ score }} p {{ message }} - table.moves-list - tbody - tr(v-for="moveIdx in evenNumbers") - td {{ firstNum + moveIdx / 2 + 1 }} - td(:class="{'highlight-lm': cursor == moveIdx}" - @click="() => gotoMove(moveIdx)") - | {{ moves[moveIdx].notation }} - td(v-if="moveIdx < moves.length-1" - :class="{'highlight-lm': cursor == moveIdx+1}" - @click="() => gotoMove(moveIdx+1)") - | {{ moves[moveIdx+1].notation }} - // Else: just add an empty cell - td(v-else) + .moves-list + .tr(v-for="moveIdx in evenNumbers") + .td {{ firstNum + moveIdx / 2 + 1 }} + .td(v-if="moveIdx < moves.length-1 || show == 'all'" + :class="{'highlight-lm': cursor == moveIdx}" + @click="() => gotoMove(moveIdx)" + ) + | {{ notation(moves[moveIdx]) }} + .td( + v-if="moveIdx < moves.length-1" + :class="{'highlight-lm': cursor == moveIdx+1}" + @click="() => gotoMove(moveIdx+1)" + ) + | {{ notation(moves[moveIdx+1]) }} + // Else: just add an empty cell + //.td(v-else)