- From: Jake Archibald <notifications@github.com>
- Date: Fri, 18 Nov 2016 05:36:05 -0800
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
Received on Friday, 18 November 2016 13:36:45 UTC
I think it's important for NPS promises to resolve once the data is successfully stored. As for the timing, I was following the push API's lead here. I'm not against changing as long as we both change. I don't fully understand the complexity in waiting. Assuming… ```js registration.navigationPreload.enable(); ``` …waits for an active worker, how is this more complex than: ```js await registration.ready; registration.navigationPreload.enable(); ``` (assuming https://github.com/w3c/ServiceWorker/issues/770) -- 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/ServiceWorker/issues/920#issuecomment-261532932
Received on Friday, 18 November 2016 13:36:45 UTC