mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
10 lines
259 B
CoffeeScript
10 lines
259 B
CoffeeScript
angular.module("admin.utils").directive "saveBar", (StatusMessage) ->
|
|
restrict: "E"
|
|
transclude: true
|
|
scope:
|
|
dirty: "="
|
|
persist: "=?"
|
|
templateUrl: "admin/save_bar.html"
|
|
link: (scope, element, attrs) ->
|
|
scope.StatusMessage = StatusMessage
|