mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
279 B
CoffeeScript
10 lines
279 B
CoffeeScript
Darkswarm.directive "loading", (Loading)->
|
|
# Triggers a screen-wide "loading" thing when Ajaxy stuff is happening
|
|
scope: {}
|
|
restrict: 'E'
|
|
templateUrl: 'loading.html'
|
|
controller: ($scope)->
|
|
$scope.Loading = Loading
|
|
$scope.show = ->
|
|
$scope.Loading.message?
|