Skip to content

Instantly share code, notes, and snippets.

@exit99
Created October 6, 2014 15:16
Show Gist options
  • Save exit99/b7bb116edabf5e301db1 to your computer and use it in GitHub Desktop.
Save exit99/b7bb116edabf5e301db1 to your computer and use it in GitHub Desktop.
Basic Angular Directive
qaApp.directive('qaAction', function () {
return {
restrict: 'E',
scope: {title: '@'},
template: '<span style="color:blue">{$ action $}</span><br><br>',
scope: {
'action': '='
}
}
});
<qa-action ng-repeat="action in case_action_data" action="action"></qa-action>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment