X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fvariant.js;h=f77be32992db56f0f3c9c020273c9c9660cb1398;hb=d449ae46d69980f18c96dbd5a87135d257dcb19d;hp=03dbbdd397881a3057bdb9a537e653eb8345d1c0;hpb=9a3c9f790aa28fd4708faefe41b4624173922c8e;p=vchess.git diff --git a/public/javascripts/variant.js b/public/javascripts/variant.js index 03dbbdd3..f77be329 100644 --- a/public/javascripts/variant.js +++ b/public/javascripts/variant.js @@ -4,13 +4,20 @@ new Vue({ display: "game", //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"; }, + setDisplay: function(elt) { + this.display = elt; + document.getElementById("drawer-control").checked = false; + }, }, });