Files
openfoodnetwork/app/assets/javascripts/darkswarm/controllers/checkout/country_controller.js.coffee
2018-06-18 14:50:03 +10:00

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
, {}