Working on tests..

This commit is contained in:
Hillel Coren 2017-04-12 13:53:41 +03:00
parent f396a02be4
commit 7dc40a3388
3 changed files with 7 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -472,7 +472,11 @@ function getContactDisplayNameWithEmail(contact)
} }
if (contact.email) { if (contact.email) {
str += ' <' + contact.email + '>'; if (str) {
str += ' - ';
}
str += contact.email;
} }
return $.trim(str); return $.trim(str);