How can I do this moment().fromNow() in angular-moment?
<div class="date pull-right"> {{ a.Alert.date }}...</div>
How can I apply fromNow() to my variable "a.Alert.date"?
In momentjs I can do this:
moment().fromNow()
"a few seconds ago"
moment('2016-12-11').fromNow()
"23 days ago"
You can simply use
am-time-ago
directive.Here a working example: