From 227f5ff1c7b56a1690319aef1e059fac79f3cbf9 Mon Sep 17 00:00:00 2001 From: FormularSumo Date: Thu, 12 Sep 2024 20:01:06 +0200 Subject: [PATCH] Remove/comment out old test code --- index.html | 16 ++++++---------- sw.js | 4 ++-- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index c2040f5..f43b9c7 100644 --- a/index.html +++ b/index.html @@ -167,10 +167,9 @@ @@ -197,9 +196,6 @@ if (document.body.requestFullscreen == undefined && document.body.webkitRequestFullscreen == undefined && document.body.mozRequestFullScreen == undefined ) { document.getElementById("fullscreen-toggle").remove(); //Remove fullscreenbutton on iOS where it's not supported.. } - console.log(document.body.requestFullscreen); - console.log(document.body.webkitRequestFullscreen); - console.log(document.body.mozRequestFullScreen); \ No newline at end of file diff --git a/sw.js b/sw.js index 41fce7e..a7f8566 100644 --- a/sw.js +++ b/sw.js @@ -1,4 +1,4 @@ -const CACHE_NAME = `0.12.0.4`; // stable.pre-release.minor.web +const CACHE_NAME = `0.12.0.5`; // stable.pre-release.minor.web // Use the install event to pre-cache all initial resources. self.addEventListener('install', event => { @@ -6,7 +6,7 @@ self.addEventListener('install', event => { event.waitUntil((async () => { const cache = await caches.open(CACHE_NAME); - console.log("Content downloading") + // console.log("Content downloading") cache.addAll([ // '/' 'index.html',