From 59223f77f8114c95f1132279a482c773e1e4745c Mon Sep 17 00:00:00 2001 From: Adeel-Charolia Date: Sat, 25 Mar 2017 10:43:17 +0500 Subject: [PATCH] Typo in "Bubbling and Capturing" Article --- 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 a1851961..942e4bd6 100644 --- a/2-ui/2-events/02-bubbling-and-capturing/article.md +++ b/2-ui/2-events/02-bubbling-and-capturing/article.md @@ -173,7 +173,7 @@ Let's see it in action: The code sets click handlers on *every* element in the document to see which ones are working. -If you click on ``, then the sequence is: +If you click on `

`, then the sequence is: 1. `HTML` -> `BODY` -> `FORM` -> `DIV` -> `P` (capturing phrase, the first listener), and then: 2. `P` -> `DIV` -> `FORM` -> `BODY` -> `HTML` (bubbling phrase, the second listener).