X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FMoveList.vue;h=1bb44367ce71ff33c88942c5bcce8643146b1487;hb=ddec77d8d3d304f61e86946ca73be6f23b11163e;hp=70756cc3d4ff0be7b4ca5eabbe363f2cb54f9bfd;hpb=430a203855578f9bbf4c851165c6066a741ff1f8;p=vchess.git diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index 70756cc3..1bb44367 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -25,14 +25,16 @@ export default { props: ["moves","cursor","score","message"], watch: { cursor: function(newValue) { + if (newValue < 0) + newValue = 0; //avoid rows[-1] --> error // $nextTick to wait for table > tr to be rendered this.$nextTick( () => { let rows = document.querySelectorAll('#movesList tr'); if (rows.length > 0) { rows[Math.floor(newValue/2)].scrollIntoView({ - behavior: 'smooth', - block: 'center' + behavior: "auto", + block: "nearest", }); } }); @@ -57,98 +59,3 @@ export default { td.highlight-lm background-color: plum - -