mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
14 lines
533 B
CoffeeScript
14 lines
533 B
CoffeeScript
Darkswarm.controller "RegistrationCtrl", ($scope, RegistrationService, EnterpriseCreationService, availableCountries) ->
|
|
$scope.currentStep = RegistrationService.currentStep
|
|
$scope.select = RegistrationService.select
|
|
$scope.enterprise = EnterpriseCreationService.enterprise
|
|
$scope.create = EnterpriseCreationService.create
|
|
|
|
$scope.steps = ['details','address','contact','about']
|
|
# ,'images','social'
|
|
|
|
$scope.countries = availableCountries
|
|
|
|
$scope.countryHasStates = ->
|
|
$scope.enterprise.country.states.length > 0
|