Fix: license timer chart bug

This commit is contained in:
2019-06-14 10:34:09 +09:00
parent 9ecb633996
commit e148f9c24d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ Chart.prototype.printChartRecord = function(chartRecordIndex, scoreListIndex) {
this.recordTexts[chartRecordIndex].printGrade("-");
this.recordTexts[chartRecordIndex].printSubject("-");
} else {
this.recordTexts[chartRecordIndex].printDate(StringUtil.printMonthDay(this.scoreList[scoreListIndex].date));
this.recordTexts[chartRecordIndex].printDate(DateUtil.printMonthDay(this.scoreList[scoreListIndex].date));
var scoreValue = RecordUtil.getRecordValueWithUnit(this.scoreList[scoreListIndex].score, 101);
this.recordTexts[chartRecordIndex].printScore(scoreValue);
+1
View File
@@ -43,6 +43,7 @@
<script src="../../game/lib/util/number_util.js"></script>
<script src="../../game/lib/util/string_util.js"></script>
<script src="../../game/lib/util/record_util.js"></script>
<script src="../../game/lib/util/date_util.js"></script>
<script src="../../game/lib/text/input_type_text.js?update_date=191224"></script>
<script src="../../game/lib/text/screen_top_ui.js?update_date=191224"></script>