[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
siakad
/
mobile
/
[
Home
]
File: app.js
self.addEventListener('install', (e) => { e.waitUntil( caches.open('error.html').then((cache) => cache.addAll([ '/mobile-app/xhtml/' ])), ); }); self.addEventListener('fetch', (e) => { e.respondWith( caches.match(e.request).then(function (response) { return response || fetch(e.request); }) ); });