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