diff --git a/app/js/format.js b/app/js/format.js index f611313..012b8c7 100644 --- a/app/js/format.js +++ b/app/js/format.js @@ -25,5 +25,5 @@ function formatNumber(num) { while (/(\d+)(\d{3})/.test(x1)) { x1 = x1.replace(/(\d+)(\d{3})/, '$1,$2'); } - return x1 + x2; + return (x1 + x2).replace('-', '−'); }