Files
openfoodnetwork/app/assets/javascripts/darkswarm/controllers/checkout/billing_controller.js.coffee
2014-06-06 14:04:47 +10:00

12 lines
336 B
CoffeeScript

Darkswarm.controller "BillingCtrl", ($scope, $timeout) ->
angular.extend(this, new FieldsetMixin($scope))
$scope.name = "billing"
$scope.nextPanel = "shipping"
$scope.summary = ->
[$scope.order.bill_address.address1,
$scope.order.bill_address.city,
$scope.order.bill_address.zipcode]
$timeout $scope.onTimeout