- From: Jinho Bang <notifications@github.com>
- Date: Thu, 25 May 2017 10:35:34 -0700
- To: w3c/payment-handler <payment-handler@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 25 May 2017 17:36:24 UTC
@rsolomakhin, If a SW client is controlled by an active worker, we can says that the SW client is a controlled client. (FYI, The SW client can be window client, worker and so on.) For example, let's imagine that the origin of SW is "https://example.com". In the SW context, ``` clients.openWindow("https://example.com/abc").then(windowClient => { // windowClient is controlled. }); ``` ``` clients.openWindow("https://uncontrolled.com").then(windowClient => { // this windowClient is not controlled. So, should be null. }); ``` -- 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/payment-handler/issues/163#issuecomment-304072662
Received on Thursday, 25 May 2017 17:36:24 UTC