Skip to content

Instantly share code, notes, and snippets.

@nickeddy
Created March 19, 2015 17:13
Show Gist options
  • Save nickeddy/1a43f34e8fa6ad42e762 to your computer and use it in GitHub Desktop.
Save nickeddy/1a43f34e8fa6ad42e762 to your computer and use it in GitHub Desktop.
// needs moment.js
angular.module('app', [])
.filter('smallMoment', function() {
return function(data) {
return moment(data).format('M/D/YYYY H:mm:ss A');
};
});
// in template: {{ someDate | smallMoment }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment