Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
1.5 KiB

  1. /*
  2. * Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
  3. *
  4. * This file is part of Nexus Timers.
  5. *
  6. * Nexus Timers is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Nexus Timers is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. // This service worker file is effectively a 'no-op' that will reset any
  20. // previous service worker registered for the same host:port combination.
  21. // In the production build, this file is replaced with an actual service worker
  22. // file that will precache your site's local assets.
  23. // See https://github.com/facebookincubator/create-react-app/issues/2272#issuecomment-302832432
  24. self.addEventListener('install', () => self.skipWaiting());
  25. self.addEventListener('activate', () => {
  26. self.clients.matchAll({ type: 'window' }).then(windowClients => {
  27. for (let windowClient of windowClients) {
  28. // Force open pages to refresh, so that they have a chance to load the
  29. // fresh navigation response from the local dev server.
  30. windowClient.navigate(windowClient.url);
  31. }
  32. });
  33. });