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