Skip to content

Instantly share code, notes, and snippets.

@qhwa
Created May 8, 2014 02:06
Show Gist options
  • Save qhwa/b90e3d4e7803a5265887 to your computer and use it in GitHub Desktop.
Save qhwa/b90e3d4e7803a5265887 to your computer and use it in GitHub Desktop.
angularjs filter of display time as 'xxx ago'
angular.module('fromNowFilter',[]).filter 'from_now', () ->
(date) ->
moment(date).fromNow()
@qhwa
Copy link
Author

qhwa commented May 8, 2014

Example usage:

<div>created at {{ blog.created_at | from_now }} ago</div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment