X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FGame.vue;h=2d085c87c9b5426aed244a505a52485ce1c63980;hb=656b187886e5187e52fafe44b7dc0fb45ccd9222;hp=b10be754516a711a2fe2482ff179ce2d010ea6af;hpb=9330b976e02148bb89e11819070d5d818e82e522;p=vchess.git diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index b10be754..2d085c87 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -8,30 +8,22 @@ h3#abortBoxTitle.section {{ st.tr["Terminate game?"] }} button(@click="abortGame") {{ st.tr["Sorry I have to go"] }} button(@click="abortGame") {{ st.tr["Game seems over"] }} - button(@click="abortGame") {{ st.tr["Game is too boring"] }} + button(@click="abortGame") {{ st.tr["Opponent is gone"] }} BaseGame(:game="game" :vr="vr" ref="basegame" @newmove="processMove" @gameover="gameOver") 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 textarea(v-if="game.score=='*'" v-model="corrMsg") + Chat(:players="game.players") - -