mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
222 B
CoffeeScript
9 lines
222 B
CoffeeScript
Darkswarm.controller "CountryCtrl", ($scope, availableCountries) ->
|
|
|
|
$scope.countries = availableCountries
|
|
|
|
$scope.countriesById = $scope.countries.reduce (obj, country) ->
|
|
obj[country.id] = country
|
|
obj
|
|
, {}
|