����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.139.89.220 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/public/ |
Upload File : |
const preLoad = function () { return caches.open("offline").then(function (cache) { // caching index and important routes return cache.addAll(filesToCache); }); }; self.addEventListener("install", function (event) { event.waitUntil(preLoad()); }); const filesToCache = [ '/', '/offline.html' ]; const checkResponse = function (request) { return new Promise(function (fulfill, reject) { fetch(request).then(function (response) { if (response.status !== 404) { fulfill(response); } else { reject(); } }, reject); }); }; const addToCache = function (request) { return caches.open("offline").then(function (cache) { return fetch(request).then(function (response) { return cache.put(request, response); }); }); }; const returnFromCache = function (request) { return caches.open("offline").then(function (cache) { return cache.match(request).then(function (matching) { if (!matching || matching.status === 404) { return cache.match("offline.html"); } else { return matching; } }); }); }; self.addEventListener("fetch", function (event) { event.respondWith(checkResponse(event.request).catch(function () { return returnFromCache(event.request); })); if(!event.request.url.startsWith('http')){ event.waitUntil(addToCache(event.request)); } });