clientsClaim.mjs 494 B

1234567891011121314151617181920
  1. /*
  2. Copyright 2019 Google LLC
  3. Use of this source code is governed by an MIT-style
  4. license that can be found in the LICENSE file or at
  5. https://opensource.org/licenses/MIT.
  6. */
  7. import './_version.mjs';
  8. /**
  9. * Claim any currently available clients once the service worker
  10. * becomes active. This is normally used in conjunction with `skipWaiting()`.
  11. *
  12. * @alias workbox.core.clientsClaim
  13. */
  14. export const clientsClaim = () => {
  15. addEventListener('activate', () => clients.claim());
  16. };