Skip to content

Commit 0d497c7

Browse files
authored
Update article.md
1 parent 356d527 commit 0d497c7

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/3-event-details/1-mouse-events-basics

1 file changed

+1
-1
lines changed

2-ui/3-event-details/1-mouse-events-basics/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ As you can see from the list above, a user action may trigger multiple events.
3434

3535
For instance, a left-button click first triggers `mousedown`, when the button is pressed, then `mouseup` and `click` when it's released.
3636

37-
In cases when a single action initiates multiple events, their order is fixed. That is, the handlers are called in the order `mousedown` -> `mouseup` -> `click`.
37+
In cases when a single action initiates multiple events, their order is fixed. That is, the handlers are called in the order `mousedown` -> `mouseup` -> `click`.
3838

3939
```online
4040
Click the button below and you'll see the events. Try double-click too.

0 commit comments

Comments
 (0)