DEV: Add param that allows service worker to be removed.

This commit is contained in:
Guo Xiang Tan 2018-07-09 11:24:06 +08:00
parent 72a3457379
commit cb12f462a2
1 changed files with 9 additions and 2 deletions

View File

@ -7,10 +7,17 @@ export default {
location.hostname === "localhost";
const isSupported = isSecured && "serviceWorker" in navigator;
const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
if (isSupported) {
if (Discourse.ServiceWorkerURL && !isSafari) {
const isSafari = /^((?!chrome|android).)*safari/i.test(
navigator.userAgent
);
const disableServiceWorker = window.location.search.includes(
"disable_service_worker"
);
if (Discourse.ServiceWorkerURL && !isSafari && !disableServiceWorker) {
navigator.serviceWorker.getRegistrations().then(registrations => {
for (let registration of registrations) {
if (