dependency update

This commit is contained in:
2016-06-01 14:18:10 +02:00
parent e69b783eb0
commit 36178526e3
20 changed files with 258 additions and 243 deletions
@@ -1,4 +1,4 @@
App.CurrencyHelper = Ember.Helper.helper (params, options)->
amount = params[0]
amount = 0.0 if isNaN(amount) || amount== '' || amount == null
new Handlebars.SafeString('€ ' + parseFloat(amount).toFixed(2))
"€ #{parseFloat(amount).toFixed(2)}".htmlSafe()