Fix: stop watch for 1to50
This commit is contained in:
@@ -9,14 +9,14 @@ RecordUtil.getRecordValueWithUnit = function(record, appID) {
|
||||
}
|
||||
|
||||
RecordUtil.getRecordValueText = function(record, appID) {
|
||||
if(appID == 104)
|
||||
if(appID == 104 || appID == 105)
|
||||
return record.toFixed(2);
|
||||
else
|
||||
return NumberUtil.numberWithCommas(Math.floor(record));
|
||||
}
|
||||
|
||||
RecordUtil.getRecordUnit = function(appID) {
|
||||
if(appID == 104) // dodge
|
||||
if(appID == 104 || appID == 105) // dodge
|
||||
return " 초";
|
||||
else if(appID == 52 || appID == 53) // word flyingsaucer
|
||||
return " 점";
|
||||
|
||||
Reference in New Issue
Block a user