Files
openfoodnetwork/app/assets/javascripts/darkswarm/controllers/registration_controller.js.coffee

13 lines
528 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