����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 13.58.11.68 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/gle.gltechlimited.com/public/ |
Upload File : |
var staticCacheName = "pwa-v" + new Date().getTime(); var getUrl = location; var baseurl = location.href; var res = baseurl.replace("/serviceworker.js", ""); var filesToCache = [ res+'/offline', res+'/images/icons/icon-72x72.png', res+'/images/icons/icon-96x96.png', res+'/images/icons/icon-128x128.png', res+'/images/icons/icon-144x144.png', res+'/images/icons/icon-152x152.png', res+'/images/icons/icon-192x192.png', res+'/images/icons/icon-384x384.png', res+'/images/icons/icon-512x512.png', ]; // Cache on install self.addEventListener("install", event => { this.skipWaiting(); event.waitUntil( caches.open(staticCacheName) .then(cache => { return cache.addAll(filesToCache); }) ) }); // Clear cache on activate self.addEventListener('activate', event => { event.waitUntil( caches.keys().then(cacheNames => { return Promise.all( cacheNames .filter(cacheName => (cacheName.startsWith("pwa-"))) .filter(cacheName => (cacheName !== staticCacheName)) .map(cacheName => caches.delete(cacheName)) ); }) ); }); // Serve from Cache self.addEventListener("fetch", event => { event.respondWith( caches.match(event.request) .then(response => { return response || fetch(event.request); }) .catch(() => { return caches.match('offline'); }) ) });