Skip to content

Instantly share code, notes, and snippets.

@leog
Last active August 29, 2015 14:22
Show Gist options
  • Save leog/4b4aa0df9548a8d1caa3 to your computer and use it in GitHub Desktop.
Save leog/4b4aa0df9548a8d1caa3 to your computer and use it in GitHub Desktop.
Very simple AngularJS module to illustrate how to define a stand-alone module
angular
.module(‘first’, [])
.filter(‘greet’, function() {
return function(name) {
return ‘Hello, ‘ + name + ‘!’;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment