CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/assets/serviceWorker.js
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
// for v0, we keep all of this empty
7
8
// Listen for install event, set callback
9
self.addEventListener("install", function (event) {});
10
11
self.addEventListener("activate", function (event) {});
12
13
self.addEventListener("fetch", function (event) {});
14
15