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