Skip to content

Instantly share code, notes, and snippets.

@bcuz
Created October 29, 2016 16:01
Show Gist options
  • Save bcuz/fe028ebfa75c13cd1543d2e1cfc339bf to your computer and use it in GitHub Desktop.
Save bcuz/fe028ebfa75c13cd1543d2e1cfc339bf to your computer and use it in GitHub Desktop.
directive element:
<app-info info="move"></app-info>
directive
app.directive('appInfo', function() {
return {
restrict: 'E',
scope: {
info: '='
},
templateUrl: 'js/directives/appInfo.html'
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment