mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
11 lines
358 B
CoffeeScript
11 lines
358 B
CoffeeScript
Darkswarm.directive "helpModal", ($modal, $compile, $templateCache)->
|
|
restrict: 'A'
|
|
scope:
|
|
helpText: "@helpModal"
|
|
|
|
link: (scope, elem, attrs, ctrl)->
|
|
compiled = $compile($templateCache.get('help-modal.html'))(scope)
|
|
|
|
elem.on "click", =>
|
|
$modal.open(controller: ctrl, template: compiled, scope: scope, windowClass: 'help-modal small')
|