From f7e1159519b5f76f3adf261d45f788bf4fa5e48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Sun, 9 Jun 2019 00:38:15 +0900 Subject: [PATCH] Fix: Chart.js printMonthDay bug --- src/game/lib/chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/lib/chart.js b/src/game/lib/chart.js index 05dfbdf..639bfb7 100644 --- a/src/game/lib/chart.js +++ b/src/game/lib/chart.js @@ -15,7 +15,7 @@ Chart.prototype.drawRecordGraph = function(index, date, bestRecord, min, max) { this.drawText( posX, posY + Chart.CHART_DATE_OFFSET_Y, - date === "-" ? "-" : StringUtil.printMonthDay(date) + date === "-" ? "-" : DateUtil.printMonthDay(date) ); if(bestRecord === "")