Removes jQuery timeago

This commit is contained in:
Filipa Lacerda 2016-11-09 11:23:04 +00:00
parent 3fef5e66db
commit de8a6c874b

View file

@ -130,7 +130,9 @@
* @returns {String}
*/
createdDate() {
return $.timeago(this.model.created_at);
const timeagoInstance = new timeago();
return timeagoInstance.format(this.model.created_at);
},
/**