Skip to content

Instantly share code, notes, and snippets.

@gabor-farkas
Created December 20, 2015 23:07
Show Gist options
  • Save gabor-farkas/182cb5848a26f051f96e to your computer and use it in GitHub Desktop.
Save gabor-farkas/182cb5848a26f051f96e to your computer and use it in GitHub Desktop.
blog/reusablecomponent/directive1
var NameEmailDirective = function() {
var directive = {};
directive.restrict = 'E';
directive.template = nameEmailTemplate;
directive.scope= { 'name': '=', 'email': '='}
return directive;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment