ember2 progress deprication smashing

This commit is contained in:
2015-08-26 19:56:44 +02:00
parent 39a21ec705
commit bb22dffef2
48 changed files with 139 additions and 146 deletions
@@ -0,0 +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))