[bugfix] fix bar order (#3180)

This commit is contained in:
Maxime Beauchemin 2017-07-26 09:22:03 -07:00 committed by GitHub
parent 747bf80474
commit fca982c609

View File

@ -229,14 +229,10 @@ export function initJQueryAjax() {
} }
export function tryNumify(s) { export function tryNumify(s) {
// Attempts casting to float, returns string when failing // Attempts casting to Number, returns string when failing
try { const n = Number(s);
const parsed = parseFloat(s); if (isNaN(n)) {
if (parsed) { return s;
return parsed;
}
} catch (e) {
// pass
} }
return s; return n;
} }