Removed toFixed
This commit is contained in:
parent
5c204b3774
commit
6c31987bbf
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ Reporter.prototype.update = function() {
|
|||
newValue = target.currentCostumeIndex + 1;
|
||||
break;
|
||||
case 'timer':
|
||||
newValue = interp.primitiveTable.timer().toFixed(3);
|
||||
newValue = interp.primitiveTable.timer();
|
||||
break;
|
||||
}
|
||||
if (typeof newValue === 'number' && Math.abs(newValue) > 0.001) {
|
||||
|
|
Reference in a new issue