mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-20 16:50:41 -04:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
// This file should be served from the web root to avoid scope and cookie related issues with some browsers
|
|
self.addEventListener('install', function(e) {
|
|
console.log('install event');
|
|
});
|
|
|
|
self.addEventListener('fetch', function(e) {
|
|
// nothing here yet
|
|
return;
|
|
});
|
|
|