Progression in styles + initiate translation process
[vchess.git] / public / javascripts / variant.js
index 3aa2f68..03dbbdd 100644 (file)
@@ -1,15 +1,12 @@
 new Vue({
        el: "#variantPage",
        data: {
-               display: "", //do not show anything...
+               display: "game", //default: play!
                problem: undefined, //current problem in view
        },
        methods: {
                toggleDisplay: function(elt) {
-                       if (this.display == elt)
-                               this.display = ""; //hide
-                       else
-                               this.display = elt; //show
+                       this.display = elt; //show
                },
                showProblem: function(problemTxt) {
                        this.problem = JSON.parse(problemTxt);