/home/techb158/ileadtechnology.com/public
NameSizeModeActions
admin/-0755rm
adv_upload/-0755rm
class/-0755rm
content/-0755rm
css/-0755rm
files/-0755rm
images/-0755rm
installer/-0755rm
js/-0755rm
subtitles/-0755rm
vendor/-0755rm
video/-0755rm
.DS_Store61480644editdlrm
.htaccess5930644editdlrm
.rnd10240600editdlrm
admin.php331100644editdlrm
config.txt10644editdlrm
democontent.zip8590260644editdlrm
error_log2219040644editdlrm
favicon.ico00644editdlrm
index.php161030644editdlrm
info.txt240644editdlrm
manifest.json12590644editdlrm
robots.txt240644editdlrm
step1.txt1880644editdlrm
step2.txt1880644editdlrm
step3.txt1880644editdlrm
sw.js7720644editdlrm
web.config9140644editdlrm
Edit: /home/techb158/ileadtechnology.com/public/sw.js (772B)
const CACHE_NAME = 'em-ANK-HAR-Cache-v1'; const URLS_TO_CACHE = [ "/public/offline", ]; self.addEventListener("install", function(event) { event.waitUntil( caches.open(CACHE_NAME).then(function(cache) { return cache.addAll(URLS_TO_CACHE); }) ); }); self.addEventListener("fetch", function(event) { event.respondWith( fetch(event.request).catch(function() { return caches.match(event.request).then(function(response) { if (response) { return response; } else if (event.request.headers.get("accept").includes("text/html")) { return caches.match("/offline"); } }); }) ); });