Skip to content

Instantly share code, notes, and snippets.

Created November 4, 2013 17:10
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 anonymous/379a6b39f7452d569467 to your computer and use it in GitHub Desktop.
Save anonymous/379a6b39f7452d569467 to your computer and use it in GitHub Desktop.
myDirective = function() {
return {
restrict: 'A',
link: function($scope, $element) {
$element.css('color', 'red');
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment