serviceWorker.ready never resolves unless within setTimeout

690 Views Asked by At

In a page's domready event I'm setting an event listener for a button that sets a Background Sync event in a page on my website (when offline), but even if the service worker has been loaded already on previous page visits, this line of code never resolves the promise, its status stays "Pending" indefinitely.

navigator.serviceWorker.ready.then(function (sw) {
    $('#elt').on('click', function () {
         sw.sync.register('contact-form-submission');

Since I know the sync event won't need to be set until after a form is completed, I tried wrapping this code in a setTimeout() of 3 seconds, which worked! My question is why this might be, I haven't been able to find anyone else indicating the .ready event wouldn't be available when the page is first loaded. Insight appreciated.

0

There are 0 best solutions below