mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
prevent version link from being clicked during play on mobile
This commit is contained in:
parent
3d764eb605
commit
9b2c740b9d
@ -241,3 +241,7 @@ kbd{
|
||||
text-decoration: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.version-hide{
|
||||
pointer-events: none;
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user