Add a <time-ago> component to abstract out common handling of showing how long ago an event occurred

This commit is contained in:
Joseph Schorr 2017-11-27 12:40:58 +02:00
parent b9768ef6cf
commit 33af54d355
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<span>
<span ng-if="::$ctrl.datetime" data-title="{{ ::$ctrl.datetime | amDateFormat:'dddd, MMMM Do YYYY, h:mm:ss a' }}" bs-tooltip>
<span am-time-ago="::$ctrl.datetime"></span>
</span>
<span ng-if="::!$ctrl.datetime">Unknown</span>
</span>