4 lines
221 B
CoffeeScript
4 lines
221 B
CoffeeScript
Ember.Handlebars.registerBoundHelper 'currency', (amount, params..., options)->
|
|
amount = 0.0 if isNaN(amount) || amount== '' || amount == null
|
|
new Handlebars.SafeString('€ ' + parseFloat(amount).toFixed(2))
|