Files
mozo-backend/app/assets/javascripts/shared-ember-helpers/time.js.coffee
T
2014-03-27 21:51:16 +01:00

6 lines
305 B
CoffeeScript

Ember.Handlebars.helper 'time', (time, params..., options = {})->
return '' unless time
iso = time.toISOString()
tag = if options.bare then iso else $("<span data-time=\"#{iso}\"></span>").text(moment(iso).format(options.format || 'dd D MMM HH:MM')).get(0).outerHTML
new Handlebars.SafeString tag