mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
361 B
CoffeeScript
10 lines
361 B
CoffeeScript
angular.module('Darkswarm').factory "Properties", (properties)->
|
|
new class Properties
|
|
# Populate ProductProperties.properties from json in page.
|
|
properties: properties
|
|
properties_by_id: {}
|
|
constructor: ->
|
|
# Map properties to id/object pairs for lookup.
|
|
for property in @properties
|
|
@properties_by_id[property.id] = property
|