mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
8 lines
235 B
CoffeeScript
8 lines
235 B
CoffeeScript
Darkswarm.controller "CartDropdownCtrl", ($scope, Cart, BodyScroll) ->
|
|
$scope.Cart = Cart
|
|
$scope.showCartSidebar = false
|
|
|
|
$scope.toggleCartSidebar = ->
|
|
$scope.showCartSidebar = !$scope.showCartSidebar
|
|
BodyScroll.toggle()
|