Files
openfoodnetwork/app/assets/javascripts/darkswarm/controllers/registration/registration_controller.js.coffee
Rohan Mitchell d471368412 Spacing
2015-03-27 13:09:25 +11:00

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