mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
11 lines
284 B
CoffeeScript
11 lines
284 B
CoffeeScript
Darkswarm.factory "Taxons", (taxons)->
|
|
new class Taxons
|
|
# Populate Taxons.taxons from json in page.
|
|
taxons: taxons
|
|
taxons_by_id: {}
|
|
constructor: ->
|
|
# Map taxons to id/object pairs for lookup.
|
|
for taxon in @taxons
|
|
@taxons_by_id[taxon.id] = taxon
|
|
|