Skip to content

Commit f10de85

Browse files
authored
Merge pull request #134 from reactjs/fix-sync
fix previous error from syncing
2 parents 4a7d069 + b613fc5 commit f10de85

File tree

1 file changed

+3
-36
lines changed

1 file changed

+3
-36
lines changed

content/docs/reference-events.md

Lines changed: 3 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,9 @@ function onClick(event) {
6262

6363
> Nota:
6464
>
65-
<<<<<<< HEAD
6665
> Si desea acceder a las propiedades del evento de forma asíncrona, debe llamar a `event.persist()` en el evento, lo que eliminará el evento sintético del grupo y permitirá que el código de usuario retenga las referencias al evento.
6766
68-
## Eventos Soportados
67+
## Eventos Soportados {#supported-events}
6968

7069
React normaliza los eventos para que tengan propiedades consistentes en diferentes navegadores.
7170

@@ -90,41 +89,9 @@ Los controladores de eventos a continuación se activan por un evento en la fase
9089

9190
* * *
9291

93-
## Referencia
92+
## Referencia {#reference}
9493

95-
### Eventos del Portapapeles
96-
=======
97-
> If you want to access the event properties in an asynchronous way, you should call `event.persist()` on the event, which will remove the synthetic event from the pool and allow references to the event to be retained by user code.
98-
99-
## Supported Events {#supported-events}
100-
101-
React normalizes events so that they have consistent properties across different browsers.
102-
103-
The event handlers below are triggered by an event in the bubbling phase. To register an event handler for the capture phase, append `Capture` to the event name; for example, instead of using `onClick`, you would use `onClickCapture` to handle the click event in the capture phase.
104-
105-
- [Clipboard Events](#clipboard-events)
106-
- [Composition Events](#composition-events)
107-
- [Keyboard Events](#keyboard-events)
108-
- [Focus Events](#focus-events)
109-
- [Form Events](#form-events)
110-
- [Mouse Events](#mouse-events)
111-
- [Pointer Events](#pointer-events)
112-
- [Selection Events](#selection-events)
113-
- [Touch Events](#touch-events)
114-
- [UI Events](#ui-events)
115-
- [Wheel Events](#wheel-events)
116-
- [Media Events](#media-events)
117-
- [Image Events](#image-events)
118-
- [Animation Events](#animation-events)
119-
- [Transition Events](#transition-events)
120-
- [Other Events](#other-events)
121-
122-
* * *
123-
124-
## Reference {#reference}
125-
126-
### Clipboard Events {#clipboard-events}
127-
>>>>>>> aada3a308493614b7d5b4b438b5c345d7ecc6c53
94+
### Eventos del Portapapeles {#clipboard-events}
12895

12996
Nombres de Eventos:
13097

0 commit comments

Comments
 (0)