Re: [ServiceWorker] Can we replace event.default() with something less magic? (#607)

@bhritchie you could also do
```js
if(cacheResponse)
  event.respondWith(cacheResponse)
```
and let the default handling of the service worker take over otherwise. That should do what you want.

---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/607#issuecomment-118269225

Received on Friday, 3 July 2015 08:02:31 UTC