1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-27 09:09:44 +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

@ -1,11 +1,11 @@
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved. // Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
// //
// This software (Documize Community Edition) is licensed under // This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html // GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
// //
// You can operate outside the AGPL restrictions by purchasing // You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license // Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>. // by contacting <sales@documize.com>.
// //
// https://documize.com // https://documize.com
@ -16,7 +16,14 @@ export function userInitials(params) {
let firstname = params[0]; let firstname = params[0];
let lastname = params[1]; let lastname = params[1];
if (is.undefined(firstname)) {
firstname = " ";
}
if (is.undefined(lastname)) {
lastname = " ";
}
return (firstname.substring(0, 1) + lastname.substring(0, 1)).toUpperCase(); return (firstname.substring(0, 1) + lastname.substring(0, 1)).toUpperCase();
} }
export default Ember.Helper.helper(userInitials); export default Ember.Helper.helper(userInitials);

File diff suppressed because one or more lines are too long