mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
17 lines
528 B
CoffeeScript
17 lines
528 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)
|
|
|
|
$scope.emptyCart = (href, ev)->
|
|
console.log href
|
|
if $(ev.delegateTarget).hasClass "empties-cart"
|
|
location.href = href if confirm "Changing your Hub will clear your cart."
|
|
else
|
|
location.href = href
|