Fixed formatting of numbers in the thousands.

This commit is contained in:
Brendon Duncan 2018-08-13 15:43:20 +12:00
commit 098d454b8b

View file

@ -105,6 +105,9 @@
return;
}
// Remove thousands separators for parseFloat()
$scope.value = $scope.value.replace(',', '');
var parsed = parseFloat($scope.value);
var valueFormatted = '';
var valueProcessing = '';