Files
old-ribica/front-ui/app/globals.js

8 lines
188 B
JavaScript
Raw Normal View History

2015-01-22 06:38:48 +01:00
module.exports = {
ApiUrl: 'http://localhost:4567',
FormatCurrency: function(amount_s) {
var amount = parseFloat(amount_s);
return ( amount.toFixed(2) + " KM" )
}
2015-01-22 06:38:48 +01:00
};