mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
9 lines
441 B
CoffeeScript
9 lines
441 B
CoffeeScript
Darkswarm.controller "PaymentCtrl", ($scope) ->
|
|
angular.extend(this, new FieldsetMixin($scope))
|
|
$scope.name = "payment"
|
|
|
|
$scope.months = {1: "January", 2: "February", 3: "March", 4: "April", 5: "May", 6: "June", 7: "July", 8: "August", 9: "September", 10: "October", 11: "November", 12: "December"}
|
|
$scope.years = [moment().year()..(moment().year()+15)]
|
|
$scope.secrets.card_month = "1"
|
|
$scope.secrets.card_year = moment().year()
|