mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
12 lines
487 B
CoffeeScript
12 lines
487 B
CoffeeScript
Darkswarm.controller "RegistrationCtrl", ($scope, RegistrationService, EnterpriseRegistrationService, availableCountries) ->
|
|
$scope.currentStep = RegistrationService.currentStep
|
|
$scope.enterprise = EnterpriseRegistrationService.enterprise
|
|
$scope.select = RegistrationService.select
|
|
|
|
$scope.steps = ['details', 'contact', 'type', 'about', 'images', 'social']
|
|
|
|
$scope.countries = availableCountries
|
|
|
|
$scope.countryHasStates = ->
|
|
$scope.enterprise.country.states.length > 0
|