Update article.md

Move '=' out of backticks
This commit is contained in:
Peter Roche 2019-11-15 23:43:59 -07:00 committed by GitHub
parent 25c8c4aa3a
commit b7a92c9de5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ For instance, if we have a single handler `form.onclick`, then it can "catch" al
In `form.onclick` handler:
- `this` (`=event.currentTarget`) is the `<form>` element, because the handler runs on it.
- `this` (='event.currentTarget`) is the `<form>` element, because the handler runs on it.
- `event.target` is the actual element inside the form that was clicked.
Check it out: