Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a83ad87
First draft
mariomenjr Aug 20, 2020
7dcb92f
Second draft: complete article
mariomenjr Aug 21, 2020
d57dc71
Translate html example
mariomenjr Sep 3, 2020
4d80c90
Review article.md translation
mariomenjr Sep 3, 2020
a13ac48
Merge branch 'master' of https://github.com/javascript-tutorial/es.ja…
mariomenjr Sep 3, 2020
e8ee2a0
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
1d9f8d9
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
9864344
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
9bdaae3
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
aa996e9
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
086b2a4
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
7ded877
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
539738d
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
c1c8227
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
6f697f7
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
b3132a1
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
2140566
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
48a7084
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
a8aa672
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
mariomenjr Sep 4, 2020
eda8b0c
Fix left suggestion in PR#372
mariomenjr Sep 4, 2020
f1d5214
Fix minor typos
mariomenjr Sep 4, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 2-ui/2-events/02-bubbling-and-capturing/article.md
Co-authored-by: joaquinelio <joaquinelio@gmail.com>
  • Loading branch information
mariomenjr and joaquinelio authored Sep 4, 2020
commit 48a70846833ff08cd387adbf951a785019596e18
2 changes: 1 addition & 1 deletion 2-ui/2-events/02-bubbling-and-capturing/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ Cuando ocurre un evento, el elemento más anidado dónde ocurrió se reconoce co
Cada manejador puede acceder a las propiedades del objeto `event`:

- `event.target` -- el elemento más profundo que originó el evento.
- `event.currentTarget` (=`this`) -- el elemento actual que maneja el evento (el qué tiene al manejador en él)
- `event.currentTarget` (=`this`) -- el elemento actual que maneja el evento (el que tiene al manejador en él)
- `event.eventPhase` -- la fase actual (captura=1, objetivo=2, propagación=3).

Cualquier manejador de evento puede detener el evento al llamar `event.stopPropagation()`, pero no es recomendado porque no podemos realmente asegurar que no lo necesitaremos más adelante, quizá para completar diferentes cosas.
Expand Down