X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fvariant.js;h=d617c60affa4add018b9f1baf29dddf74ac55702;hb=a5d5668613d9a3d04c9a4f8b69122d02b7322137;hp=3aa2f686e6a66fecb85b830a5d089c042c5d7528;hpb=c794dbb87592782913af0a09784ed25e019e4d10;p=vchess.git diff --git a/public/javascripts/variant.js b/public/javascripts/variant.js index 3aa2f686..d617c60a 100644 --- a/public/javascripts/variant.js +++ b/public/javascripts/variant.js @@ -1,19 +1,26 @@ new Vue({ el: "#variantPage", data: { - display: "", //do not show anything... + display: "play", //default: play! problem: undefined, //current problem in view }, + created: function() { + const url = window.location.href; + const hashPos = url.indexOf("#"); + console.log(hashPos + " " + url); + if (hashPos >= 0) + this.setDisplay(url.substr(hashPos+1)); + }, methods: { - toggleDisplay: function(elt) { - if (this.display == elt) - this.display = ""; //hide - else - 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; }, }, });