fix ie8 hasOwnProperty issue. Fixes issue #200

This commit is contained in:
Mottie 2012-12-20 13:18:48 -06:00
parent 623b1a3b7a
commit e52e148ead

View File

@ -1131,7 +1131,7 @@
if (typeof(s) !== 'string' || s === '') { return s; } if (typeof(s) !== 'string' || s === '') { return s; }
// allow using formatFloat without a table; defaults to US number format // allow using formatFloat without a table; defaults to US number format
var i, var i,
t = table && table.hasOwnProperty('config') ? table.config.usNumberFormat !== false : t = table && table.config ? table.config.usNumberFormat !== false :
typeof table !== "undefined" ? table : true; typeof table !== "undefined" ? table : true;
if (t) { if (t) {
// US Format - 1,234,567.89 -> 1234567.89 // US Format - 1,234,567.89 -> 1234567.89