Skip to content

Instantly share code, notes, and snippets.

@joe-watkins
Created February 17, 2014 19:46
Show Gist options
  • Save joe-watkins/9057582 to your computer and use it in GitHub Desktop.
Save joe-watkins/9057582 to your computer and use it in GitHub Desktop.
A Pen by Joe Watkins.
<div ng-app="superhero">
<superman></superman>
</div>
var myApp = angular.module('superhero',[]);
myApp.directive('superman',function(){
return {
restrict : "E",
template : "<div>Here I am to save the day!</div>"
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment