X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=8fbc9d0b0d90028fe520ccf80e8dd277c471172d;hb=5c8e044f7bab43ca8573fdf631f9b87daeda3ad0;hp=e417e5e434506fb7adf826616edc9b4d0b5e772f;hpb=e69f159dfdeb8dbe5eee89c6e6f78fd9e7323640;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index e417e5e4..8fbc9d0b 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -11,30 +11,24 @@ button(@click="abortGame") {{ st.tr["Game is too boring"] }} BaseGame(:game="game" :vr="vr" ref="basegame" @newmove="processMove" @gameover="gameOver") - textarea#mvMessage(v-if="game.type=='corr'" v-model="corrMsg") div Names: {{ game.players[0].name }} - {{ game.players[1].name }} - div Time: {{ virtualClocks[0] }} - {{ virtualClocks[1] }} + div(v-if="game.score=='*'") Time: {{ virtualClocks[0] }} - {{ virtualClocks[1] }} .button-group(v-if="game.mode!='analyze' && game.score=='*'") button(@click="offerDraw") Draw button(@click="() => abortGame()") Abort button(@click="resign") Resign - div(v-if="game.type=='corr'") - textarea(v-show="score=='*' && vr.turn==game.mycolor" v-model="corrMsg") - div(v-show="cursor>=0") {{ moves[cursor].message }} + textarea(v-if="game.score=='*'" v-model="corrMsg") + Chat(:players="game.players")