Skip to content

Instantly share code, notes, and snippets.

@evert0n
Forked from marufsiddiqui/app.js
Created July 1, 2014 23:46
Show Gist options
  • Save evert0n/986ca51809d2b54fbd5b to your computer and use it in GitHub Desktop.
Save evert0n/986ca51809d2b54fbd5b to your computer and use it in GitHub Desktop.
var homeModule = angular.module('HomeModule', []);
homeModule.filter('titleCase', function () {
return function (input) {
var words = input.split(' ');
for (var i = 0; i < words.length; i++) {
words[i] = words[i].charAt(0).toUpperCase() + words[i].slice(1);
}
return words.join(' ');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment