-
-
Save juanpabloaj/3eb0c1011cec380398c7 to your computer and use it in GitHub Desktop.
Revisions
-
paulakreuger revised this gist
Jul 1, 2014 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ app.filter('capitalize', function() { return function(input, scope) { if (input!=null) input = input.toLowerCase(); return input.substring(0,1).toUpperCase()+input.substring(1); } }); -
paulakreuger created this gist
Jul 1, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ app.filter('capitalize', function() { return function(input, scope) { if (input!=null) input = input.toLowerCase(); return input.substring(0,1).toUpperCase()+input.substring(1); } });