mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
14 lines
336 B
CoffeeScript
14 lines
336 B
CoffeeScript
Darkswarm.controller "HubNodeCtrl", ($scope, Navigation, $location, $anchorScroll, $templateCache, CurrentHub) ->
|
|
$scope.toggle = ->
|
|
Navigation.navigate $scope.hub.path
|
|
|
|
$scope.open = ->
|
|
$location.path() == $scope.hub.path
|
|
|
|
$scope.current = ->
|
|
$scope.hub.id is CurrentHub.id
|
|
|
|
if $scope.open()
|
|
$anchorScroll()
|
|
|