Re: [whatwg/dom] Improving ergonomics of events with Observable (#544)

@WillsB3 lets say you wanted to track all link clicks within a container element:

```js
container.on('click').filter(e => e.target.closest('a')).subscribe(e => {
  // …
});
```

-- 
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/issues/544#issuecomment-351705380

Received on Thursday, 14 December 2017 13:05:41 UTC