X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fvariant.js;h=819bf90fd10b6d8e9c4df595fe2fa09ee404346f;hb=375ecdd1387e729f85ed114e82253469e4849869;hp=f77be32992db56f0f3c9c020273c9c9660cb1398;hpb=d449ae46d69980f18c96dbd5a87135d257dcb19d;p=vchess.git diff --git a/public/javascripts/variant.js b/public/javascripts/variant.js index f77be329..819bf90f 100644 --- a/public/javascripts/variant.js +++ b/public/javascripts/variant.js @@ -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"; }, }, });