Fix typo in a variable name

This commit is contained in:
LoveEevee 2019-01-05 18:54:06 +03:00
parent 886979ad36
commit 23f17aa26d
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
class StringsJa{
constructor(){
this.tilteProceed = "Click or Press Enter!"
this.titleProceed = "Click or Press Enter!"
this.categories = {
"J-POP": "J-POP",
"アニメ": "アニメ",

View File

@ -2,9 +2,9 @@ class Titlescreen{
constructor(){
loader.changePage("titlescreen")
this.titleScreen = document.getElementById("title-screen")
var proceed = document.getElementById("tilte-proceed")
proceed.appendChild(document.createTextNode(strings.tilteProceed))
proceed.setAttribute("alt", strings.tilteProceed)
var proceed = document.getElementById("title-proceed")
proceed.appendChild(document.createTextNode(strings.titleProceed))
proceed.setAttribute("alt", strings.titleProceed)
pageEvents.keyAdd(this, "all", "down", this.keyDown.bind(this))
pageEvents.add(this.titleScreen, ["mousedown", "touchstart"], this.onPressed.bind(this))

View File

@ -1,4 +1,4 @@
<div id="title-screen">
<div class="logo-big">太鼓の達人ウェブ</div>
<div class="click-to-continue stroke-sub" id="tilte-proceed"></div>
<div class="click-to-continue stroke-sub" id="title-proceed"></div>
</div>