We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, it is incorrectly reflecting the currency information retrieved from MySQL.
As you can see above, mitcoin is 13.16.
But when we go into operation, it shows as if there are a few more digits.
Heres my function to converting.
convertMoney: function(money) { return currency(money, { symbol: "€", separator: ".", decimal: "," }).format(); }, convertChip: function(chip) { return currency(chip, { symbol: "∐", separator: ".", decimal: "," }).format(); },
The text was updated successfully, but these errors were encountered:
I found the solution. I changed the Seperator and Decimal parts.
Sorry, something went wrong.
No branches or pull requests
Hi, it is incorrectly reflecting the currency information retrieved from MySQL.
As you can see above, mitcoin is 13.16.
But when we go into operation, it shows as if there are a few more digits.
Heres my function to converting.
The text was updated successfully, but these errors were encountered: