X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=b238758c82e0cba2b89453b234d660228cca3230;hb=e71161fbfffe53b0f4b174e0467cdd98cc70b7b0;hp=ca538924290b548d9c88b3dab55f51e1de252724;hpb=96e9585a39ca3ccef59c701b3f7ac3809692ca73;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index ca538924..b238758c 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -3,59 +3,85 @@ div #scoreInfo(v-if="score!='*'") p {{ score }} p {{ message }} - table#movesList - 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)