Closed GoogleCodeExporter closed 8 years ago
Accepted and committed (rev#58) to repository to be included in next release
(v1.4)
Original comment by bdewe...@hotmail.com
on 23 Jun 2010 at 5:55
Amazingly fast response! You made the change as quickly as I could hack-patch
it, kudos :)
In case it's helpful to anyone, here is a quick fix for 1.3. It is a hack, so
I'd recommend checking out trunk and minifying it for critical apps.
jQuery.fn.formatCurrencyIssue19Fix = function() {
$this = $(this);
var num = $this[$this.is('input, select, textarea') ? 'val' : 'html']();
num = num.replace("-.","-0.");
$this[$this.is('input, select, textarea') ? 'val' : 'html'](num);
};
$('.selector').formatCurrencyIssue19Fix();
Original comment by ryan.mck...@nrel.gov
on 23 Jun 2010 at 6:05
jQuery FormatCurrency v1.4 has been released
Original comment by bdewe...@hotmail.com
on 24 Jun 2010 at 3:34
Original issue reported on code.google.com by
ryan.mck...@nrel.gov
on 23 Jun 2010 at 5:19