- From: Rouslan Solomakhin <notifications@github.com>
- Date: Wed, 16 Mar 2016 17:59:53 -0700
- To: w3c/browser-payment-api <browser-payment-api@noreply.github.com>
Received on Thursday, 17 March 2016 01:00:48 UTC
It's a part of the of the PaymentRequest object, I believe.
````JavaScript
var request = new PaymentRequest(methods, details, {'requestShipping': true});
request.addEventListener('onShippingAddressChange', function(event) {
console.log(request.shippingAddress);
});
request.show().then(handleResponse).catch(handleError);
````
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/browser-payment-api/issues/75#issuecomment-197627506
Received on Thursday, 17 March 2016 01:00:48 UTC