mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
442 B
CoffeeScript
16 lines
442 B
CoffeeScript
Darkswarm.controller "DetailsCtrl", ($scope, $timeout) ->
|
|
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()
|
|
|
|
$timeout $scope.onTimeout
|