Files
openfoodnetwork/app/assets/javascripts/darkswarm/controllers/registration_controller.js.coffee
2014-09-11 17:07:05 +10:00

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