mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
209 B
CoffeeScript
9 lines
209 B
CoffeeScript
Darkswarm.factory 'CurrentOrder', (currentOrder) ->
|
|
new class CurrentOrder
|
|
constructor: ->
|
|
@[k] = v for k, v of currentOrder
|
|
@cart_count ?= 0
|
|
|
|
empty: =>
|
|
@line_items.length == 0
|