'update'
[vchess.git] / client / src / views / Rules.vue
index 5a69c5b..dbc6798 100644 (file)
@@ -3,16 +3,16 @@ 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"] }}
+            @click="gotoAnalyze()")
+          | {{ st.tr["Analyse"] }}
       .section-content(v-show="display=='rules'" v-html="content")
   ComputerGame(v-show="display=='computer'" :game-info="gameInfo"
     @game-over="stopGame" @game-stopped="gameStopped")
@@ -22,7 +22,6 @@ main
 import ComputerGame from "@/components/ComputerGame.vue";
 import { store } from "@/store";
 import { getDiagram } from "@/utils/printDiagram";
-
 export default {
   name: 'my-rules',
   components: {
@@ -108,7 +107,7 @@ export default {
       this.gameInProgress = false;
     },
     gotoAnalyze: function() {
-      this.$router.push("/analyze/" + this.gameInfo.vname
+      this.$router.push("/analyse/" + this.gameInfo.vname
         + "/?fen=" + V.GenRandInitFen());
     },
   },