Fix: app group tab name

This commit is contained in:
2019-08-22 19:22:48 +09:00
parent 5e21eb36d3
commit 742b692632
4 changed files with 21 additions and 8 deletions
+3 -3
View File
@@ -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() {