mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-05 22:26:07 +00:00
9 lines
226 B
CoffeeScript
9 lines
226 B
CoffeeScript
Darkswarm.directive "cart", ->
|
|
# Toggles visibility of the "cart" popover
|
|
restrict: 'A'
|
|
link: (scope, elem, attr)->
|
|
scope.open = false
|
|
elem.bind 'click', ->
|
|
scope.$apply ->
|
|
scope.open = !scope.open
|