Skip to content

Instantly share code, notes, and snippets.

@beschauer
Created September 18, 2013 11:26
Show Gist options
  • Save beschauer/6607823 to your computer and use it in GitHub Desktop.
Save beschauer/6607823 to your computer and use it in GitHub Desktop.
angular directive
.directive('myDirective', [ ->
restrict: 'EA'
replace: true
scope: {
myProperty: '='
}
template: '<div></div>'
link: (scope, element, attrs) ->
# TODO logic
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment