From b7a92c9de50e0073e9a254c4905420cf733f591c Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Fri, 15 Nov 2019 23:43:59 -0700 Subject: [PATCH] Update article.md Move '=' out of backticks --- 2-ui/2-events/02-bubbling-and-capturing/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/02-bubbling-and-capturing/article.md b/2-ui/2-events/02-bubbling-and-capturing/article.md index 53c31eb9..2370c4e4 100644 --- a/2-ui/2-events/02-bubbling-and-capturing/article.md +++ b/2-ui/2-events/02-bubbling-and-capturing/article.md @@ -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 `
` element, because the handler runs on it. +- `this` (='event.currentTarget`) is the `` element, because the handler runs on it. - `event.target` is the actual element inside the form that was clicked. Check it out: