Skip to content

Instantly share code, notes, and snippets.

@ronapelbaum
Created July 13, 2016 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronapelbaum/0119786551d1378031b474d181b47421 to your computer and use it in GitHub Desktop.
Save ronapelbaum/0119786551d1378031b474d181b47421 to your computer and use it in GitHub Desktop.
test a directive with scope
function upperCaseDirective() {
return {
template: '<div>{{text}}</div>',
link: function (scope, elem, attrs) {
scope.text = scope.text.toUpperCase();
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment