mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
336 B
CoffeeScript
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
|