mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
9 lines
311 B
CoffeeScript
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)
|