Angular capitalize filter
Quick Demo
Angular filter that capitalizes each word in a string, read about it on here.
CSS is fairly powerful, but it can only capitalize words that aren't uppercase. The text-transform:capitalize
property won't change anything in a string like CAN'T GET ME CSS. Use this directive to achieve consistent capitalization of each word in a given string.
Usage
- Include
ng-capitalize.js
. - Add
dm.capitalize
as a dependency to your app. - Profit!
Bower
Installable via bower
:
bower install ng-capitalize
Npm
Installable via npm
:
npm install ng-capitalize-filter --save
Example
See index.html for an example.
{{'MOUNTAIN' | capitalize}} <!-- Mountain --> {{'MOUNTAIN DOOM' | capitalize}} <!-- Mountain Doom -->
About ngmilk
ngmilk is the place to go for fresh front-end articles, with a focus on AngularJS. See more on ngmilk.rocks
Follow @ngmilkrocks on Twitter to stay ahead of the game.