Files
openfoodnetwork/app/assets/javascripts/darkswarm/directives/enterprise_modal.js.coffee
2014-10-01 18:47:22 +10:00

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)