14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
/**
|
|
* A global Blaze UI helper to capitalizes the first letter of an input String
|
|
*
|
|
* Credit to:
|
|
*
|
|
* http://stackoverflow.com/questions/1026069/capitalize-the-first-letter-of-string-in-javascript
|
|
*/
|
|
UI.registerHelper('capitalizeFirstLetter', function (context) {
|
|
if (!context) {
|
|
return;
|
|
}
|
|
|
|
return context.charAt(0).toUpperCase() + context.slice(1);
|
|
}); |