Re: [whatwg/dom] Allow removing event listeners by group (#469)

I was wondering whether supplying a signal like the AbortController/AbortSignal would make more sense instead of groups. Then you can abort multiple things with the same controller.

```
const controller = new AbortController();
accelerometer.addEventListener('reading', listener, {signal:controller.signal});
controller.abort();

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/pull/469#issuecomment-424716607

Received on Wednesday, 26 September 2018 13:34:07 UTC