X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FRules.vue;h=2871f3f3321e29ab8ed786c0ef436da00459103d;hb=8b3b2151048df82b70502c84c4f45c9ce2d5ca88;hp=1f9a0a44bd3dc3ceb8face11c7664383208f6e41;hpb=fcbc92c26e382e425d3d4cc4910eaf1a1d61c989;p=vchess.git diff --git a/client/src/views/Rules.vue b/client/src/views/Rules.vue index 1f9a0a44..2871f3f3 100644 --- a/client/src/views/Rules.vue +++ b/client/src/views/Rules.vue @@ -3,30 +3,51 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button(@click="clickReadRules") {{ st.tr["Rules"] }} - button(v-show="!gameInProgress" @click="() => startGame('auto')") + button(@click="clickReadRules()") {{ st.tr["Rules"] }} + button( + v-show="!gameInProgress" + @click="startGame('auto')" + ) | {{ st.tr["Example game"] }} - button(v-show="!gameInProgress" @click="() => startGame('versus')") + button( + v-show="!gameInProgress" + @click="startGame('versus')" + ) | {{ st.tr["Practice"] }} - button(v-show="gameInProgress" @click="() => stopGame()") + button( + v-show="gameInProgress" + @click="stopGame()" + ) | {{ st.tr["Stop game"] }} - button(v-if="display=='rules' && gameInfo.vname!='Dark'" - @click="gotoAnalyze") - | {{ st.tr["Analyze"] }} - .section-content(v-show="display=='rules'" v-html="content") - ComputerGame(v-show="display=='computer'" :game-info="gameInfo" - @game-over="stopGame" @game-stopped="gameStopped") + button( + v-if="showAnalyzeBtn" + @click="gotoAnalyze()" + ) + | {{ st.tr["Analysis mode"] }} + .row + .col-sm-12.col-md-8.col-md-offset-2.col-lg-6.col-lg-offset-3 + h4#variantName(v-show="display=='rules'") {{ gameInfo.vname }} + div( + v-show="display=='rules'" + v-html="content" + ) + ComputerGame( + ref="compgame" + v-show="display=='computer'" + :game-info="gameInfo" + @game-stopped="gameStopped" + ) - + -figure.diagram-container - margin: 15px 0 15px 0 +