mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
8 lines
404 B
JavaScript
8 lines
404 B
JavaScript
|
/* global moment */
|
||
|
export default Ember.Handlebars.makeBoundHelper(function (timeago) {
|
||
|
return moment(timeago).fromNow();
|
||
|
// stefanpenner says cool for small number of timeagos.
|
||
|
// For large numbers moment sucks => single Ember.Object based clock better
|
||
|
// https://github.com/manuelmitasch/ghost-admin-ember-demo/commit/fba3ab0a59238290c85d4fa0d7c6ed1be2a8a82e#commitcomment-5396524
|
||
|
});
|