Fix: app group tab name
This commit is contained in:
@@ -439,7 +439,7 @@ TypingExamination.prototype.showTypingExaminationContents = function() {
|
||||
this.textTypingRecordsDone[i].text = "";
|
||||
} else {
|
||||
this.textTypingContentsDone[i].text = this.typingExaminationContents[doneIndex];
|
||||
this.textTypingRecordsDone[i].text = Math.floor(this.typingRecordForLines[doneIndex]);
|
||||
this.textTypingRecordsDone[i].text = NumberUtil.getRecordText(Math.floor(this.typingRecordForLines[doneIndex]));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -600,8 +600,8 @@ TypingExamination.prototype.playNextContent = function() {
|
||||
|
||||
TypingExamination.prototype.showPlayingWordNumber = function() {
|
||||
var currentLine = this.typingIndex + 1;
|
||||
// this.textTypingLine.text = currentLine + " / " + this.typingContentLength;
|
||||
this.textTypingLine.text = "9,999/9,999";
|
||||
this.textTypingLine.text = currentLine + " / " + this.typingContentLength + " 줄";
|
||||
// this.textTypingLine.text = "9,999/9,999 줄";
|
||||
}
|
||||
|
||||
TypingExamination.prototype.setTimeTypingStart = function() {
|
||||
|
||||
Reference in New Issue
Block a user