X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=28d0d0096bd0656706bea53c6ee42767ffc3c99e;hb=41c80bb63b85b2696d3925c10784c3d7bb5d2aa3;hp=ca538924290b548d9c88b3dab55f51e1de252724;hpb=96e9585a39ca3ccef59c701b3f7ac3809692ca73;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index ca538924..28d0d009 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -3,7 +3,7 @@ div #scoreInfo(v-if="score!='*'") p {{ score }} p {{ message }} - table#movesList + table.moves-list tbody tr(v-for="moveIdx in evenNumbers") td {{ firstNum + moveIdx / 2 + 1 }} @@ -25,6 +25,8 @@ export default { props: ["moves","cursor","score","message","firstNum"], watch: { cursor: function(newValue) { + if (window.innerWidth <= 767) + return; //moves list is below: scrolling would hide chessboard if (newValue < 0) newValue = 0; //avoid rows[-1] --> error // $nextTick to wait for table > tr to be rendered @@ -56,6 +58,14 @@ export default {