mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
13 lines
421 B
CoffeeScript
13 lines
421 B
CoffeeScript
angular.module("ofn.admin").factory "DisplayProperties", ->
|
|
new class DisplayProperties
|
|
displayProperties: {}
|
|
|
|
showVariants: (product_id) ->
|
|
@productProperties(product_id).showVariants
|
|
|
|
setShowVariants: (product_id, showVariants) ->
|
|
@productProperties(product_id).showVariants = showVariants
|
|
|
|
productProperties: (product_id) ->
|
|
@displayProperties[product_id] ||= {showVariants: false}
|