Hide keyboard tutorial from mobile users

This commit is contained in:
LoveEevee
2018-10-06 18:09:57 +03:00
parent 386b8905ac
commit d36d013551
2 changed files with 20 additions and 13 deletions

View File

@@ -26,10 +26,10 @@ class Titlescreen{
setTimeout(this.goNext.bind(this), 500)
}
goNext(){
if(localStorage.getItem("tutorial") !== "true"){
new Tutorial()
}else{
if(this.touched || localStorage.getItem("tutorial") === "true"){
new SongSelect(false, false, this.touched)
}else{
new Tutorial()
}
}
clean(){