This commit is contained in:
Jon Lambson 2017-10-12 10:41:11 -06:00
parent 0ea815a91d
commit 281ed9d1b2
1 changed files with 3 additions and 3 deletions

View File

@ -834,7 +834,7 @@ app.filter('stringify', function() {
});
app.filter('capitalize', function() {
return function(input) {
return (!!input) ? input.charAt(0).toUpperCase() + input.substr(1).toLowerCase() : '';
};
return function(input) {
return (!!input) ? input.charAt(0).toUpperCase() + input.substr(1).toLowerCase() : '';
};
});