mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-04 22:16:08 +00:00
10 lines
339 B
CoffeeScript
10 lines
339 B
CoffeeScript
Darkswarm.directive "enterpriseModal", ($modal)->
|
|
restrict: 'E'
|
|
replace: true
|
|
template: "<a ng-transclude></a>"
|
|
transclude: true
|
|
link: (scope, elem, attrs, ctrl)->
|
|
elem.on "click", (ev)=>
|
|
ev.stopPropagation()
|
|
scope.modalInstance = $modal.open(controller: ctrl, templateUrl: 'enterprise_modal.html', scope: scope)
|