Page History
...
Code Block | ||
---|---|---|
| ||
function addGooglePayButton() { const paymentsClient = getGooglePaymentsClient(); const button = paymentsClient.createButton({onClick: onGooglePaymentButtonClicked, buttonColor:'black', buttonType:'long'}); //button creation document.getElementById('container').appendChild(button); // adding a button to a page document.getElementById('container').style.display = 'block'; } |
Warning |
---|
When setting up the button, you must consider the requirements for branding Google. |