mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
10 lines
281 B
CoffeeScript
10 lines
281 B
CoffeeScript
Darkswarm.directive "confirmLinkClick", ($window) ->
|
|
restrict: 'A'
|
|
scope:
|
|
confirmMsg: '@confirmLinkClick'
|
|
link: (scope, elem, attr) ->
|
|
elem.bind 'click', (event) ->
|
|
unless confirm(scope.confirmMsg)
|
|
event.preventDefault()
|
|
event.stopPropagation()
|