Fix: get best recod -> get app highest record

This commit is contained in:
2018-10-23 23:10:03 +09:00
parent d45e44c6b2
commit f0dc660018
6 changed files with 18 additions and 18 deletions
+6 -6
View File
@@ -84,12 +84,12 @@ SessionStorageManager.prototype.getRecord = function() {
}
// best record
SessionStorageManager.prototype.setBestRecord = function(value) {
sessionStorage.setItem("bestRecord", value);
}
SessionStorageManager.prototype.getBestRecord = function() {
return Number(sessionStorage.getItem("bestRecord"));
}
// SessionStorageManager.prototype.setBestRecord = function(value) {
// sessionStorage.setItem("bestRecord", value);
// }
// SessionStorageManager.prototype.getBestRecord = function() {
// return Number(sessionStorage.getItem("bestRecord"));
// }
// best record
SessionStorageManager.prototype.setAppHighestRecord = function(value) {