Skip to content

Commit f84bd8d

Browse files
committed
minor
1 parent 235a2ed commit f84bd8d

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave

1 file changed

+1
-1
lines changed

2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ parent.onmouseover = function(event) {
109109
};
110110
```
111111

112-
If we don't examine `event.target` inside the handlers, then it may seem that the mouse left `parent` element, and then came back over it. But it's not the case! The mouse never left, it just moved to the child element.
112+
If we don't examine `event.target` inside the handlers, then it may seem that the mouse pointer left `parent` element, and then came back over it. But it's not the case! The mouse never left, it just moved to the child element.
113113

114114
If there's some action upon leaving the element, e.g. animation runs, then such interpretation may bring unwanted side effects.
115115

0 commit comments

Comments
 (0)