Skip to content

Instantly share code, notes, and snippets.

@hcabnettek
Created November 4, 2012 18:45
Show Gist options
  • Save hcabnettek/4012999 to your computer and use it in GitHub Desktop.
Save hcabnettek/4012999 to your computer and use it in GitHub Desktop.
Angular directive
angular.module('foo.directive', [])
.directive('restaurant', function(){
return {
restrict: 'E',
template: '<li>Hello World</li>'
}
});
angular.module('foo', ['foo.directive']);
<restaurant><li>Hello World</li></restaurant>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment