This commit is contained in:
Dobie Wollert
2014-07-25 03:00:29 -04:00
parent c63d462188
commit a403c9079f
39 changed files with 2875 additions and 3541 deletions

View File

@ -12,5 +12,13 @@ angular.module('biomed.filters', [])
return function(time) {
return moment(time).format('h:mma');
};
})
.filter('email', function() {
return function(email) {
var parts = email.split("@", 2);
if (parts[1].toLowerCase() == "atlanticbiomedical.com")
return parts[0] + "@";
else
return email;
}
});