Skip to content

Instantly share code, notes, and snippets.

@willrjmarshall
Created April 24, 2014 03:45
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 willrjmarshall/11240782 to your computer and use it in GitHub Desktop.
Save willrjmarshall/11240782 to your computer and use it in GitHub Desktop.
Darkswarm.directive "ofnModal", ($modal)->
restrict: 'E'
replace: true
transclude: true
template: "<a>{{title}}</a>"
link: (scope, elem, attrs, ctrl, transclude)->
scope.title = attrs.title
scope.cancel = ->
scope.modalInstance.dismiss("cancel")
template = transclude().add("<a class='close-reveal-modal' 'ng-click'='cancel()'>&#215;</a>")
# ng-click doesn't work here! Is the scope wrong? How can I set it correctly?
elem.on "click", ->
scope.modalInstance = $modal.open(template: template)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment