mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-21 00:47:26 +00:00
10 lines
329 B
CoffeeScript
10 lines
329 B
CoffeeScript
angular.module("admin.payments").controller "PaymentCtrl", ($scope, Payment, Loading) ->
|
|
$scope.form_data = Payment.form_data
|
|
$scope.submitted = false
|
|
|
|
$scope.submitPayment = () ->
|
|
return false if $scope.submitted == true
|
|
$scope.submitted = true
|
|
Loading.message = t("submitting_payment")
|
|
Payment.purchase()
|