Added 'the' to first sentence

Capturing and bubbling allow us to implement one of [the] most powerful event handling patterns
This commit is contained in:
chrisbarbas 2022-01-13 04:04:27 -05:00 committed by GitHub
parent 610fb9366e
commit a960e3e753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
# Event delegation
Capturing and bubbling allow us to implement one of most powerful event handling patterns called *event delegation*.
Capturing and bubbling allow us to implement one of the most powerful event handling patterns called *event delegation*.
The idea is that if we have a lot of elements handled in a similar way, then instead of assigning a handler to each of them -- we put a single handler on their common ancestor.