http://plnkr.co/edit/5zxXEEz30t51yGhgYWVF?p=preview
I\'m using Moment.js and Angular-moment in my app.
For some reason it\'s converting all
Try to write own filter, like this:
newapp.filter("fromTimestamp", function(){ return function(timestamp, format){ return moment.unix(timestamp).format(format) } })
And use them
{{date | fromTimestamp:'ffffdd, MMMM Do YYYY'}}
Plunker demo