urish / angular-moment

Moment.JS directives for Angular.JS (timeago and more)
MIT License
2.6k stars 397 forks source link

Add unix offset formatting filters #187

Closed brian-pickens closed 8 years ago

brian-pickens commented 8 years ago

Would like a filter to format moment to unix timestamp formats. This would be a helpful utility for working with other types of functionality. My particular situation involves sorting elements via the Isotope library. http://isotope.metafizzy.co/sorting.html

urish commented 8 years ago

You can use amDateFormat filter with the 'X' or 'x' format specifiers. Read here for more information about supported formatting options:

http://momentjs.com/docs/#/displaying/format/

brian-pickens commented 8 years ago

Thank you for pointing that out