nudge

stay close to mom

M
Mom
No updates yet today
Updates
Streak
Settings
0 / 200
  • No updates yet. Say hi!
No moods logged yet.
Add a number to speed-dial from the Call button
Call reminder is off
Reminders are off
{ "name": "Nudge", "short_name": "Nudge", "description": "Stay close to Mom", "start_url": "/", "display": "standalone", "background_color": "#FBEAF0", "theme_color": "#D4537E", "orientation": "portrait", "icons": [ { "src": "icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" }, { "src": "icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" } ] }const CACHE = 'nudge-v1'; const ASSETS = ['/', '/index.html', '/manifest.json']; self.addEventListener('install', e => { e.waitUntil(caches.open(CACHE).then(c => c.addAll(ASSETS))); self.skipWaiting(); }); self.addEventListener('activate', e => { e.waitUntil(caches.keys().then(keys => Promise.all(keys.filter(k => k !== CACHE).map(k => caches.delete(k))) )); self.clients.claim(); }); self.addEventListener('fetch', e => { e.respondWith( caches.match(e.request).then(r => r || fetch(e.request)) ); });