X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=11a59258a8f1d2dc793de76897cf9dd3ad48bd45;hb=e30523f27d5989903de6743a8b4f194a390d576c;hp=0e430fe2664b2ee502ac5ee3d89c460fe132cb7a;hpb=7b6306a8f359821b352995f5b9a27ba278dc5d48;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index 0e430fe2..11a59258 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -374,7 +374,7 @@ export default { id: my.id, name: my.name, tmpIds: { - tmpId: { focus: true } + [tmpId]: { focus: true } } } ); @@ -1447,7 +1447,7 @@ export default { ? this.repeat[fenObj] + 1 : 1; if (this.repeat[fenObj] >= 3) { - if (this.vr.loseOnRepetition()) + if (this.vr.loseOnRepetition) this.gameOver(moveCol == "w" ? "0-1" : "1-0", "Repetition"); else this.drawOffer = "threerep"; } @@ -1618,7 +1618,9 @@ export default { if (["all","byrow"].includes(V.ShowMoves)) { this.curDiag = getDiagram({ position: position, - orientation: V.CanFlip ? this.game.mycolor : "w" + orientation: V.CanFlip ? this.game.mycolor : "w", + color: this.game.mycolor, + score: "*" }); document.querySelector("#confirmDiv > .card").style.width = boardDiv.offsetWidth + "px";