mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
3d6856614f
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
17 lines
506 B
JavaScript
17 lines
506 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {Helper} = Ember;
|
|
|
|
export default Helper.helper(function (params) {
|
|
if (!params || !params.length) {
|
|
return;
|
|
}
|
|
|
|
let [timeago] = params;
|
|
|
|
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
|
|
});
|