From 57b5696986c3d892afde8be0ceeaedec1387cf7e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 18 Jul 2019 03:14:49 +0300 Subject: [PATCH] minor --- 2-ui/1-document/11-coordinates/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/11-coordinates/article.md b/2-ui/1-document/11-coordinates/article.md index 5dfd791e..fe8c7e1d 100644 --- a/2-ui/1-document/11-coordinates/article.md +++ b/2-ui/1-document/11-coordinates/article.md @@ -5,7 +5,7 @@ To move elements around we should be familiar with coordinates. Most JavaScript methods deal with one of two coordinate systems: 1. **Relative to the window** - similar to `position:fixed`, calculated from the window top/left edge. - - we'll denote them as `clientX/clientY`, the reason for such name will become clear later when we move to events, + - we'll denote these coordinates as `clientX/clientY`, the reason for such name will become clear after next chapters , 2. **Relative to the document** - similar to `position:absolute` in the document root, calculated from the document top/left edge. - we'll denote them `pageX/pageY`