Files
mozo-backend/app/assets/javascripts/shared-ember-helpers/translation.js.coffee
T
2014-03-23 15:30:21 +01:00

5 lines
201 B
CoffeeScript

Ember.Handlebars.registerHelper 't', (path, params..., options)->
text = t(path)
tag = if options.hash.bare then text else "<span data-t=\"#{path}\">#{text}</span>"
new Handlebars.SafeString tag