mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
15 lines
403 B
CoffeeScript
15 lines
403 B
CoffeeScript
Darkswarm.controller "DetailsCtrl", ($scope) ->
|
|
angular.extend(this, new FieldsetMixin($scope))
|
|
|
|
$scope.name = "details"
|
|
$scope.nextPanel = "billing"
|
|
|
|
$scope.summary = ->
|
|
[$scope.fullName(),
|
|
$scope.order.email,
|
|
$scope.order.bill_address.phone]
|
|
|
|
$scope.fullName = ->
|
|
[$scope.order.bill_address.firstname ? null,
|
|
$scope.order.bill_address.lastname ? null].join(" ").trim()
|