mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
7 lines
255 B
CoffeeScript
7 lines
255 B
CoffeeScript
angular.module("ofn.admin").directive "ofnConfirmLinkPath", (ofnConfirmHandler) ->
|
|
restrict: "A"
|
|
scope:
|
|
path: "@ofnConfirmLinkPath"
|
|
link: (scope, element, attrs) ->
|
|
element.click ofnConfirmHandler scope, ->
|
|
window.location = scope.path |