spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

commit 40e36bbf1bb256ec6ae9e77020f2ef9b725f6bbe
parent 1c2b346d97271735b994f8fe504600e40baa227b
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Fri,  2 Jul 2021 12:01:48 -0700

Don't add service-worker on localhost by default

Diffstat:
Mindex.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html @@ -47,7 +47,7 @@ <script> // Register service worker - if ("serviceWorker" in navigator && localStorage.getItem("serviceworker") !== "false") { + if ("serviceWorker" in navigator && (localStorage.getItem("service-worker") === "true" || !window.location.href.includes("localhost"))) { navigator.serviceWorker.register("./service-worker.js"); } </script>