1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-27 17:19:42 +02:00

avatar initials improvements

This commit is contained in:
Harvey Kandola 2016-09-10 10:43:15 -07:00
parent dc8fceca6c
commit 235f8acf51
2 changed files with 575 additions and 568 deletions

View file

@ -16,6 +16,13 @@ export function userInitials(params) {
let firstname = params[0];
let lastname = params[1];
if (is.undefined(firstname)) {
firstname = " ";
}
if (is.undefined(lastname)) {
lastname = " ";
}
return (firstname.substring(0, 1) + lastname.substring(0, 1)).toUpperCase();
}

File diff suppressed because one or more lines are too long