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.
14 lines
462 B
14 lines
462 B
// NOTE: This currently doesn't cache anything
|
|
// We are just installing it so that chrome users can be
|
|
// prompted to install Quill via add to homescreen
|
|
self.addEventListener("install", installWorker);
|
|
|
|
async function installWorker() {
|
|
await self.skipWaiting();
|
|
}
|
|
|
|
self.addEventListener("activate", activateServiceWorker);
|
|
|
|
async function activateServiceWorker(event) {
|
|
event.waitUntil(clients.claim()); // make the current sw the active sw in all pages
|
|
}
|