Fix: apply animal sheet to game, menu

This commit is contained in:
2018-11-13 11:38:20 +09:00
parent 99ca77d950
commit 11ac9924e6
10 changed files with 81 additions and 162 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ TypingTextManager.prototype.fillLeftRightBasicKey = function() {
var char = this.contents[i];
// console.log(char);
if(this.isKoreanConsonant(char)) {
this.contents.splice(i + 1, 0, "");
this.contents.splice(i + 1, 0, "");
} else if(this.isKoreanVowel(char)) {
this.contents.splice(i, 0, "ㄹ");
}
@@ -66,7 +66,7 @@ TypingTextManager.prototype.makePracticeContents = function(arr, repeatCount) {
TypingTextManager.prototype.makeTestContents = function(arr) {
this.init();
this.add(this.getShuffledArray());
this.add(this.getShuffledArray(arr));
}