diff --git a/justgage.js b/justgage.js index 58218d0..b2a8db1 100644 --- a/justgage.js +++ b/justgage.js @@ -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) {