mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
10 lines
368 B
CoffeeScript
10 lines
368 B
CoffeeScript
angular.module("admin.utils").directive "navCheck", (NavigationCheck)->
|
|
restrict: 'A'
|
|
scope:
|
|
navCallback: '&'
|
|
link: (scope,element,attributes) ->
|
|
# Define navigationCallback on a controller in scope, otherwise this default will be used:
|
|
scope.navCallback ||= ->
|
|
"You will lose any unsaved work!"
|
|
NavigationCheck.register(scope.navCallback)
|