Skip to content

Instantly share code, notes, and snippets.

@jonnii
Created February 8, 2013 15:37
Show Gist options
  • Save jonnii/4739758 to your computer and use it in GitHub Desktop.
Save jonnii/4739758 to your computer and use it in GitHub Desktop.
moment/livestamp handlebars helper.
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