main
input#modalChat.modal(type="checkbox" @change="toggleChat")
div(role="dialog" aria-labelledby="inputChat")
#chat.card
label.modal-close(for="modalChat")
Chat(:players="game.players" :pastChats="game.chats"
@newchat-sent="finishSendChat" @newchat-received="processChat")
.row
#aboveBoard.col-sm-12.col-md-9.col-md-offset-3.col-lg-10.col-lg-offset-2
button#chatBtn(onClick="doClick('modalChat')") Chat
#actions(v-if="game.mode!='analyze' && game.score=='*'")
button(@click="offerDraw") Draw
button(@click="abortGame") Abort
button(@click="resign") Resign
#playersInfo
p
span.name(:class="{connected: isConnected(0)}") {{ game.players[0].name }}
span.time(v-if="game.score=='*'") {{ virtualClocks[0] }}
span.split-names -
span.name(:class="{connected: isConnected(1)}") {{ game.players[1].name }}
span.time(v-if="game.score=='*'") {{ virtualClocks[1] }}
BaseGame(:game="game" :vr="vr" ref="basegame"
@newmove="processMove" @gameover="gameOver")