Prepare some more variants (unfinished)
[vchess.git] / public / javascripts / variant.js
index f77be32..819bf90 100644 (file)
@@ -1,7 +1,7 @@
 new Vue({
        el: "#variantPage",
        data: {
-               display: "game", //default: play!
+               display: "play", //default: play!
                problem: undefined, //current problem in view
        },
        created: function() {
@@ -13,11 +13,16 @@ new Vue({
        methods: {
                showProblem: function(problemTxt) {
                        this.problem = JSON.parse(problemTxt);
-                       this.display = "game";
+                       this.display = "play";
                },
                setDisplay: function(elt) {
                        this.display = elt;
-                       document.getElementById("drawer-control").checked = false;
+                       let menuToggle = document.getElementById("drawer-control");
+                       if (!!menuToggle)
+                               menuToggle.checked = false;
+               },
+               notDark: function() {
+                       return variant != "Dark";
                },
        },
 });