Skip to content

Commit

Permalink
issue #46 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
toorshia committed Apr 1, 2013
1 parent c740f60 commit af70497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justgage.js
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ JustGage.prototype.refresh = function(val, max) {
} else if( this.config.humanFriendly ) {
displayVal = humanFriendlyNumber( displayVal, this.config.humanFriendlyDecimal ) + this.config.symbol;
} else {
displayVal = displayVal.toFixed(this.config.decimals) + this.config.symbol;
displayVal = (displayVal * 1).toFixed(this.config.decimals) + this.config.symbol;
}

if(!this.config.counter) {
Expand Down

0 comments on commit af70497

Please sign in to comment.