- From: Adrian Hope-Bailie <notifications@github.com>
- Date: Mon, 20 Jun 2016 03:02:55 -0700
- To: w3c/browser-payment-api <browser-payment-api@noreply.github.com>
- Cc:
Received on Monday, 20 June 2016 10:03:26 UTC
@ianbjacobs is correct. Stand to be corrected by @adrianba , @rsolomakhin or @adamroach but my assumption is that code like the following would be used. How to do this is not something I'd expect in the spec, this is a generic feature detection technique. ```javascript if(PaymentOptions.requestShipping) //Check if get Shipping address feature is present if(PaymentOptions.requestPayerEmail) //Check if get email feature is present if(PaymentOptions.requestPayerPhone) //Check if get phone feature is present ``` --- 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/33#issuecomment-227100898
Received on Monday, 20 June 2016 10:03:26 UTC