X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=public%2Fjavascripts%2Fvariant.js;h=f9fb0c62dd5aa3796de21b34ec687c6a2c3caa16;hb=e6dcb115eab52abefa1d54a65af546cf5a0153e9;hp=e9e956ca068f24feb45e6ba051533cc40488785f;hpb=643479f8d7c3622b57fc49c4f10d9950793ebf4f;p=vchess.git diff --git a/public/javascripts/variant.js b/public/javascripts/variant.js index e9e956ca..f9fb0c62 100644 --- a/public/javascripts/variant.js +++ b/public/javascripts/variant.js @@ -1,25 +1,17 @@ new Vue({ el: "#variantPage", data: { - display: getCookie("display-"+variant,""), //default: do not show anything... + display: "game", //default: play! problem: undefined, //current problem in view }, methods: { - toggleDisplay: function(elt) { - if (this.display == elt) - { - this.display = ""; //hide - setCookie("display-"+variant, ""); - } - else - { - this.display = elt; //show - setCookie("display-"+variant, elt); - } - }, showProblem: function(problemTxt) { this.problem = JSON.parse(problemTxt); this.display = "game"; }, + setDisplay: function(elt) { + this.display = elt; + document.getElementById("drawer-control").checked = false; + }, }, });