From dde00408474042d80970ac68a6b7d10c2df91752 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Mon, 24 Sep 2018 15:47:46 +0300 Subject: [PATCH] Remove log --- src/main/resources/static/sw.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/resources/static/sw.js b/src/main/resources/static/sw.js index 74b2601..a2b1279 100644 --- a/src/main/resources/static/sw.js +++ b/src/main/resources/static/sw.js @@ -6,6 +6,9 @@ var urlsToCache = [ '/oauthCallback', '/css/materialize.css', '/js/navabar.js', + '/js/materialize.js', + '/js/jquery-3.3.1.min.js', + '/js/js.cookie.js', '/manifest.json' ]; @@ -23,7 +26,6 @@ self.addEventListener('install', function (event) { }); self.addEventListener('fetch', function (event) { - console.log("fetch"); event.respondWith( caches.match(event.request) .then(function (response) {