function onGooglePaymentButtonClicked()

in app/static/googlePay.js [116:128]


function onGooglePaymentButtonClicked () {
  const paymentDataRequest = getGooglePaymentDataRequest();
  paymentDataRequest.transactionInfo = getGoogleTransactionInfo();

  const paymentsClient = getGooglePaymentsClient();
  paymentsClient.loadPaymentData(paymentDataRequest)
    .then(function (paymentData) {
      processPayment(paymentData);
    })
    .catch(function (err) {
      console.error(err);
    });
}