Re: Service worker F2F meeting - 26th Jan - San Francisco

2016-01-04 Thread Conrad Irwin
I'd be interested in attending as a relatively mute observer. We've been using service workers for a while now, and I'd like to get more involved. Conrad On Monday, January 4, 2016, Jake Archibald wrote: > Since many of those involved in service workers will be in town for the > web components

Re: Indexed DB + Promises

2015-09-30 Thread Conrad Irwin
One of the things I like about the WebSQL API is that the transaction aborts if any queries fail or if any callbacks throw errors. This way the whole transaction can be handled as a promise easily, which provides nice abstraction to the calling code. It comes at the expense of each individual oper

[service_worker] Notification constructor

2015-06-15 Thread Conrad Irwin
Hey All, Apologies if this isn't the right place to ask about the service worker spec. I've been implementing some things with service workers, and it's a little bit frustrating to have to use self.registration.showNotification("hi!") instead of the more normal: new Notification("hi!") Is

[cors] Ability to read Access-Control-Expose-Headers

2011-09-25 Thread Conrad Irwin
Hi all, Is there a reason that Javascript cannot read the Access-Control-* headers in CORS? In particular I was trying to work around a bug in Firefox [1] that means that .getAllResponseHeaders() doesn't get all response headers for CORS requests. It seems that the nicest way to do this would jus