Created
February 8, 2013 15:37
-
-
Save jonnii/4739758 to your computer and use it in GitHub Desktop.
moment/livestamp handlebars helper.
This file contains hidden or 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
Ember.Handlebars.registerBoundHelper('timeSince', function (value) { | |
var when = moment(value).fromNow(); | |
return new Handlebars.SafeString('<span data-livestamp="' + value + '">' + when + '</span>'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment