mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
10 lines
304 B
CoffeeScript
10 lines
304 B
CoffeeScript
window.AccountSidebarCtrl = Darkswarm.controller "AccountSidebarCtrl", ($scope, $http, $location, SpreeUser, Navigation) ->
|
|
$scope.path = "/account"
|
|
Navigation.paths.push $scope.path
|
|
|
|
$scope.active = ->
|
|
$location.path() == $scope.path
|
|
|
|
$scope.select = ->
|
|
Navigation.navigate($scope.path)
|