mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
13 lines
385 B
CoffeeScript
13 lines
385 B
CoffeeScript
angular.module('Darkswarm').directive "enterpriseModal", (EnterpriseModal) ->
|
|
restrict: 'E'
|
|
replace: true
|
|
template: "<a ng-transclude></a>"
|
|
transclude: true
|
|
link: (scope, elem, attrs, ctrl) ->
|
|
elem.on "click", (event) =>
|
|
event.stopPropagation()
|
|
scope.modalInstance = EnterpriseModal.open scope.enterprise
|
|
|
|
scope.$on "$destroy", ->
|
|
elem.off("click")
|