aboutsummaryrefslogblamecommitdiffstats
path: root/ServiceWorker.js
blob: 1b84fdfb737baafec2f71f5f16358eef4c9ca27a (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                                           
// 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;
});