ImportSongs: Add song genre

This commit is contained in:
LoveEevee
2019-01-05 10:44:28 +03:00
parent b91b3110d5
commit 8bc9aee594
13 changed files with 423 additions and 182 deletions

View File

@@ -6,6 +6,14 @@ class LoadSong{
this.touchEnabled = touchEnabled
loader.changePage("loadsong")
var loadingText = document.getElementById("loading-text")
loadingText.appendChild(document.createTextNode(strings.loading))
loadingText.setAttribute("alt", strings.loading)
if(multiplayer){
var cancel = document.getElementById("p2-cancel-button")
cancel.appendChild(document.createTextNode(strings.cancel))
cancel.setAttribute("alt", strings.cancel)
}
this.run()
}
run(){