mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
241 B
CoffeeScript
11 lines
241 B
CoffeeScript
Darkswarm.directive "loading", (Loading)->
|
|
scope: {}
|
|
restrict: 'E'
|
|
templateUrl: 'loading.html'
|
|
controller: ($scope)->
|
|
$scope.Loading = Loading
|
|
$scope.show = ->
|
|
$scope.Loading.message?
|
|
|
|
link: ($scope, element, attr)->
|