Github user purplecabbage commented on a diff in the pull request:
https://github.com/apache/cordova-browser/pull/32#discussion_r124158440
--- Diff: bin/template/www/cordova-sw.js ---
@@ -0,0 +1,23 @@
+
+// Note, these will be updated automatically at build time
+var CACHE_VERSION = '%CACHE_VERSION%';
+var CACHE_LIST = ['CACHE_VALUES'];
+
+this.addEventListener('install', function(event) {
+ // Perform install steps
+ console.log("cordova service worker is installing.");
+ event.waitUntil(caches.open(CACHE_VERSION)
+ .then(function(cache) {
+ return cache.addAll(CACHE_LIST);
+ }));
+});
+
+this.addEventListener('activate', function(event) {
+ // Perform activate steps
+ console.log("cordova service worker is activated.");
+});
+
+this.addEventListener('fetch', function(event) {
+ console.log("cordova service worker : fetch : " + event.request.url);
+ event.respondWith(caches.match(event.request));
--- End diff --
defensively added to #36
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]