[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
1 changed files with 5 additions and 9 deletions

View File

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