Fix: remove => operator, change it with (function()).bind()

This commit is contained in:
2019-06-09 00:41:23 +09:00
parent f7e1159519
commit 36506f1ef6
+2 -2
View File
@@ -297,9 +297,9 @@ var Ranking = {
sessionStorageManager.getMaestroID(), sessionStorageManager.getMaestroID(),
this.date, this.date,
this.time, this.time,
(type, rankingRecordManager) => { (function(type, rankingRecordManager) {
this.showRanking(rankingRecordManager); this.showRanking(rankingRecordManager);
} }).bind(this),
); );
}, },