Fix: rebase code - app highest record

This commit is contained in:
2018-10-24 00:00:54 +09:00
parent c7a5926b21
commit c0e491677f
5 changed files with 19 additions and 27 deletions
-3
View File
@@ -60,13 +60,10 @@ var Start = {
sessionStorageManager.getPlayingAppID(),
(function(replyJSON) {
var appHighestRecord = replyJSON["AppHighestRecord"];
console.log("appHighestRecord : " + appHighestRecord);
sessionStorageManager.setAppHighestRecord(Number(appHighestRecord));
screenBottomUI.printLeftTextWithAppHighestRecord(appHighestRecord);
}).bind(this),
(function(replyJSON) { // no data
var appHighestRecord = replyJSON["AppHighestRecord"];
console.log("appHighestRecord : " + appHighestRecord);
sessionStorageManager.setAppHighestRecord(0);
screenBottomUI.printLeftTextWithAppHighestRecord(sessionStorageManager.getAppHighestRecord());
}).bind(this)