Fixed formatting of numbers in the thousands.
This commit is contained in:
parent
9d918a694c
commit
098d454b8b
1 changed files with 3 additions and 0 deletions
|
|
@ -105,6 +105,9 @@
|
|||
return;
|
||||
}
|
||||
|
||||
// Remove thousands separators for parseFloat()
|
||||
$scope.value = $scope.value.replace(',', '');
|
||||
|
||||
var parsed = parseFloat($scope.value);
|
||||
var valueFormatted = '';
|
||||
var valueProcessing = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue