Files
openfoodnetwork/app/assets/javascripts/darkswarm/directives/hub_modal.js.coffee
2014-07-29 12:20:06 +10:00

9 lines
311 B
CoffeeScript

Darkswarm.directive "hubModal", ($modal)->
restrict: 'E'
replace: true
template: "<a>{{enterprise.name}}</a>"
link: (scope, elem, attrs, ctrl)->
elem.on "click", (ev)=>
ev.stopPropagation()
scope.modalInstance = $modal.open(controller: ctrl, templateUrl: 'hub_modal.html', scope: scope)