Created
January 21, 2015 16:27
-
-
Save mrloop/8a2c89ff56ee3041534a to your computer and use it in GitHub Desktop.
date helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Em.Handlebars.helper 'readable-date', (date, options)-> | |
defaultFormat = "DD MMM YYYY h:mma" | |
str = moment(date).format(defaultFormat) | |
new Ember.Handlebars.SafeString(str) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{readable-date charge.created_at}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment