mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
13 lines
386 B
CoffeeScript
13 lines
386 B
CoffeeScript
angular.module('Darkswarm').controller "BillingCtrl", ($scope, $timeout, $controller) ->
|
|
angular.extend this, $controller('FieldsetMixin', {$scope: $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
|