X-Git-Url: https://git.auder.net/doc/index.css?a=blobdiff_plain;f=public%2Fjavascripts%2Fvariant.js;h=a7d182007cfce345367cbb9d4d65b985defcb052;hb=4fefd0195b2dc8559284d3b3701a242a862cb70e;hp=03dbbdd397881a3057bdb9a537e653eb8345d1c0;hpb=9a3c9f790aa28fd4708faefe41b4624173922c8e;p=vchess.git diff --git a/public/javascripts/variant.js b/public/javascripts/variant.js index 03dbbdd3..a7d18200 100644 --- a/public/javascripts/variant.js +++ b/public/javascripts/variant.js @@ -1,16 +1,25 @@ new Vue({ el: "#variantPage", data: { - display: "game", //default: play! + display: "play", //default: play! problem: undefined, //current problem in view }, + created: function() { + const url = window.location.href; + const hashPos = url.indexOf("#"); + if (hashPos >= 0) + this.setDisplay(url.substr(hashPos+1)); + }, methods: { - toggleDisplay: function(elt) { - this.display = elt; //show - }, showProblem: function(problemTxt) { this.problem = JSON.parse(problemTxt); - this.display = "game"; + this.display = "play"; + }, + setDisplay: function(elt) { + this.display = elt; + let menuToggle = document.getElementById("drawer-control"); + if (!!menuToggle) + menuToggle.checked = false; }, }, });