Fix: change typing exam failed message (word)

This commit is contained in:
2019-09-28 14:54:58 +09:00
parent ac8549e9ad
commit 4881cc1daa
7 changed files with 12 additions and 14 deletions
+1 -2
View File
@@ -30,8 +30,7 @@ Chart.prototype.drawRecordGraph = function(index, date, bestRecord, min, max) {
if(bestRecord >= 0) {
this.drawText(posX, recordTextPosY, recordWithUnit);
} else {
// recordWithUnit = recordWithUnit + "/실격";
recordWithUnit = "실격/" + recordWithUnit;
recordWithUnit = "아깝/" + recordWithUnit;
this.drawDisqualificationText(posX, recordTextPosY, recordWithUnit);
}
+1 -1
View File
@@ -51,7 +51,7 @@ HistoryText.prototype.setContents = function(date, record) {
if(record >= 0) {
this.textRecord.text = absRecordValue;
} else {
this.textRecord.text = "실격/" + absRecordValue;
this.textRecord.text = "아깝/" + absRecordValue;
this.textRecord.style.fill = "#ffaaaa";
}
};
+2 -2
View File
@@ -103,7 +103,7 @@ RankingText.prototype.setTextRankingColor = function(text, ranking) {
}
text.fill = fillColor;
text.stroke = strokeColor;
text.strokeThickness = 6;
text.strokeThickness = 4;
text.setShadow(2, 2, "#333333", 2, false, true);
};
@@ -157,7 +157,7 @@ RankingText.prototype.setContents = function(playerID, ranking, playerName, reco
if(record >= 0)
this.textRanking.text = ranking + "등";
else
this.textRanking.text = "실격";
this.textRanking.text = "아깝";
this.textPlayerName.text = playerName;
this.setRecord(record, this.appID);
this.setTopRankingTextColor(ranking);
+1 -1
View File
@@ -104,7 +104,7 @@ Result.prototype.printRecord = function() {
scoreText.style.fill = MainColor.THISTLE_STRING;
var timeoverText = this.makeDefaultText(game.world.width / 2, 225);
timeoverText.text = "== 제한 시간 초과 ==";
timeoverText.text = "== 아깝네요, 제한 시간 초과! ==";
timeoverText.fontSize = 50;
timeoverText.setShadow(3, 3, 'rgba(0, 0, 0, 0.5)', 2);
timeoverText.anchor.set(0.5);
+2 -3
View File
@@ -2,9 +2,8 @@
$(document).ready(function() {
showErrorMessage(
"(09월 15일) 알림<br/>\
* 학생 로그인 후 나타나는 메뉴 화면을 개선했습니다.<br/>\
* 타자 실력을 확인하는 [긴글 (시험)] 앱을 새로 추가했습니다.<br/>\
"(09월 28일) 알림<br/>\
* [긴글 (시험)] 5분 초과시에도 기록을 서버에 저장하도록 수정했습니다.<br/>\
※※※ 앱 실행시 문제가 생기면 [ Ctrl + F5 ](MS IE, Edge) 또는 [ Ctrl + Shift + R ](크롬 등) 단축키를 눌러서 브라우저 캐시 삭제를 해주세요. ※※※", "info"
);
});
+3 -3
View File
@@ -20,9 +20,9 @@ $(document).ready(function() {
maestroInfo.loadMaestroInfo(onLoadSuccessMaestroInfo, onLoadFailMaestroInfo);
showErrorMessage(
"(09월 15일) 알림<br/>\
* 타자 실력을 확인하는 [긴글 (시험)] 앱을 새로 추가했습니다.<br/>\
※※※ 앱 실행시 문제가 생기면 [ Ctrl + F5 ](MS IE, Edge) 또는 [ Ctrl + Shift + R ](크롬 등) 단축키를 눌러서 브라우저 캐시 삭제를 해주세요. ※※※", "success"
"(09월 28일) 알림<br/>\
* [긴글 (시험)] 5분 초과시에도 기록을 서버에 저장하도록 수정했습니다.<br/>\
※※※ 앱 실행시 문제가 생기면 [ Ctrl + F5 ](MS IE, Edge) 또는 [ Ctrl + Shift + R ](크롬 등) 단축키를 눌러서 브라우저 캐시 삭제를 해주세요. ※※※", "info"
);
});
+1 -1
View File
@@ -334,7 +334,7 @@ function addRecordListItem(date, time, name, subject, record) {
<td class="text-center">' + time + '</td>\
<td class="text-center">' + name + '</td>\
<td class="text-center">' + subject + '</td>\
<td class="text-right text-danger">(실격) ' + disqualificationRecord + '</td>\
<td class="text-right text-danger">(아깝) ' + disqualificationRecord + '</td>\
</tr>\
');
}