From 704f81763f7af6e5fb0e04f0c8c06ec9cce465ec Mon Sep 17 00:00:00 2001 From: TomSssM <43145822+TomSssM@users.noreply.github.com> Date: Sat, 26 Jan 2019 21:17:45 +0300 Subject: [PATCH] fix: replace a non-native expression --- .../article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/article.md b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/article.md index 30627f3c..f60d7e63 100644 --- a/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/article.md +++ b/2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/article.md @@ -50,7 +50,7 @@ If the mouse moves very fast from `#FROM` to `#TO` elements as painted above, th In practice that's helpful, because if there may be many intermediate elements. We don't really want to process in and out of each one. -From the other side, we should keep in mind that we can't assume that the mouse slowly moves from one event to another. No, it can "jump". +On the other hand, we should keep in mind that we can't assume that the mouse slowly moves from one event to another. No, it can "jump". In particular it's possible that the cursor jumps right inside the middle of the page from out of the window. And `relatedTarget=null`, because it came from "nowhere":