Fix: apply score+unit to ranking screen
This commit is contained in:
@@ -254,7 +254,10 @@ var Ranking = {
|
||||
// bestRecordRow[0] = jsonRankingList[i]['UserID'];
|
||||
bestRecordRow[0] = i + 1;
|
||||
bestRecordRow[1] = jsonRankingList[i]['Name'];
|
||||
bestRecordRow[2] = Math.floor(jsonRankingList[i]['BestRecord']);
|
||||
bestRecordRow[2] = RecordUtil.getRecordValueWithUnit(
|
||||
jsonRankingList[i]['BestRecord'],
|
||||
sessionStorageManager.getPlayingAppID()
|
||||
);
|
||||
// console.log("$BestRecordRow : " + bestRecordRow[0] + ", " + bestRecordRow[1] + ", " + bestRecordRow[2]);
|
||||
|
||||
recordArray.push(bestRecordRow);
|
||||
|
||||
Reference in New Issue
Block a user