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