prevent version link from being clicked during play on mobile

This commit is contained in:
Bui 2018-10-10 22:51:07 +01:00
parent 3d764eb605
commit 9b2c740b9d
2 changed files with 7 additions and 1 deletions

View File

@ -240,4 +240,8 @@ kbd{
color: #FFFFFF;
text-decoration: none;
cursor: default;
}
}
.version-hide{
pointer-events: none;
}

View File

@ -59,6 +59,7 @@ class View{
this.touchDrumDiv = document.getElementById("touch-drum")
this.touchDrumImg = document.getElementById("touch-drum-img")
this.gameDiv.classList.add("touch-visible")
document.getElementById("version").classList.add("version-hide")
pageEvents.add(this.canvas.canvas, "touchstart", this.ontouch.bind(this))
@ -954,6 +955,7 @@ class View{
pageEvents.remove(this.touchFullBtn, "click")
pageEvents.remove(this.touchPauseBtn, "click")
this.gameDiv.classList.remove("touch-visible")
document.getElementById("version").classList.remove("version-hide")
delete this.touchDrumDiv
delete this.touchDrumImg
delete this.touchFullBtn