Fix: result record, ranking board bug

This commit is contained in:
2018-10-24 11:11:02 +09:00
parent c0e491677f
commit 8894b5a8e8
6 changed files with 50 additions and 37 deletions
+9 -3
View File
@@ -7,9 +7,15 @@ function RankingBoard(type) {
this.makeMedalSprites();
this.dbConnectManager = new DBConnectManager();
this.requestRanking(DBConnectManager.TYPE_MY_RANKING_HOUR);
this.requestRanking(DBConnectManager.TYPE_MY_RANKING_DAY);
this.requestRanking(DBConnectManager.TYPE_MY_RANKING_MONTH);
setTimeout(
(function() {
this.requestRanking(DBConnectManager.TYPE_MY_RANKING_HOUR);
this.requestRanking(DBConnectManager.TYPE_MY_RANKING_DAY);
this.requestRanking(DBConnectManager.TYPE_MY_RANKING_MONTH);
}).bind(this),
RecordBoard.DELAY_UPDATING_RESULT_RECORD_MS
);
}