[bars] fix sort numeric bar on x axis (#2812)

This commit is contained in:
Maxime Beauchemin
2017-05-30 11:18:25 -07:00
committed by GitHub
parent 66403f1876
commit 74086dae2b
4 changed files with 54 additions and 8 deletions

View File

@@ -203,3 +203,16 @@ 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
}
return s;
}