You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

formatDateTime.filter.js 239B

123456789
  1. /**
  2. * Created by robin on 12/22/16.
  3. */
  4. angular.module('app').filter('formatDateTime', ['DateUtilsBusiness', function(DateUtilsBusiness) {
  5. return function(date)
  6. {
  7. return DateUtilsBusiness.formatDateTime(date);
  8. };
  9. }]);