KEYCLOAK-1945
Change capitalize function behavior
This commit is contained in:
parent
7071161a7c
commit
0f93e72b02
1 changed files with 4 additions and 9 deletions
|
@ -2030,16 +2030,11 @@ module.filter('capitalize', function() {
|
|||
if (!input) {
|
||||
return;
|
||||
}
|
||||
var result = input.substring(0, 1).toUpperCase();
|
||||
var s = input.substring(1);
|
||||
for (var i=0; i<s.length ; i++) {
|
||||
var c = s[i];
|
||||
if (c.match(/[A-Z]/)) {
|
||||
result = result.concat(" ")
|
||||
};
|
||||
result = result.concat(c);
|
||||
var splittedWords = input.split(/\s+/);
|
||||
for (var i=0; i<splittedWords.length ; i++) {
|
||||
splittedWords[i] = splittedWords[i].charAt(0).toUpperCase() + splittedWords[i].slice(1);
|
||||
};
|
||||
return result;
|
||||
return splittedWords.join(" ");
|
||||
};
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue