Skip to content

Commit 2d4e469

Browse files
committed
minor
1 parent 73914af commit 2d4e469

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Mouse events basics
22

3+
Mouse events come not only from "mouse manipulators", but are also emulated on touch devices, to make them compatible.
4+
35
In this chapter we'll get into more details about mouse events and their properties.
46

57
[cut]
@@ -26,7 +28,7 @@ The most used simple events are:
2628
### Complex events
2729

2830
`click`
29-
: Triggers after `mousedown` and then `mouseup` over the same element.
31+
: Triggers after `mousedown` and then `mouseup` over the same element if the left mouse button was used.
3032

3133
`contextmenu`
3234
: Triggers after `mousedown` if the right mouse button was used.
@@ -36,8 +38,6 @@ The most used simple events are:
3638

3739
Complex events are made of simple ones, so in theory we could live without them. But they exist, and that's good, because they are convenient.
3840

39-
For touchscreen and touchpad devices mouse events also happen, they are emulated.
40-
4141
### Events order
4242

4343
An action may trigger multiple events.

0 commit comments

Comments
 (0)