mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
379 B
CoffeeScript
12 lines
379 B
CoffeeScript
angular.module('Darkswarm').controller "ShippingCtrl", ($scope, $timeout, ShippingMethods, $controller) ->
|
|
angular.extend this, $controller('FieldsetMixin', {$scope: $scope})
|
|
|
|
$scope.ShippingMethods = ShippingMethods
|
|
$scope.name = "shipping"
|
|
$scope.nextPanel = "payment"
|
|
|
|
$scope.summary = ->
|
|
[$scope.Checkout.shippingMethod()?.name]
|
|
|
|
$timeout $scope.onTimeout
|