From f392e076e0184a952ab87402f93ff1b17562e455 Mon Sep 17 00:00:00 2001 From: Ghost-017 <31908292+Ghost-017@users.noreply.github.com> Date: Wed, 3 Oct 2018 10:29:57 +0800 Subject: [PATCH] Update task.md --- .../11-coordinates/1-find-point-coordinates/task.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/2-ui/1-document/11-coordinates/1-find-point-coordinates/task.md b/2-ui/1-document/11-coordinates/1-find-point-coordinates/task.md index 603c8472..6bbb9fe1 100644 --- a/2-ui/1-document/11-coordinates/1-find-point-coordinates/task.md +++ b/2-ui/1-document/11-coordinates/1-find-point-coordinates/task.md @@ -14,10 +14,10 @@ There's a small feature implemented in the document for convenience. A click at Your code should use DOM to get window coordinates of: -1. Left-upper outer corner (that's simple). -2. Right-bottom outer corner (simple too). -3. Left-upper inner corner (a bit harder). -4. Right-bottom inner corner (there are several ways, choose one). +1. Upper-left, outer corner (that's simple). +2. Bottom-right, outer corner (simple too). +3. Upper-left, inner corner (a bit harder). +4. Bottom-right, inner corner (there are several ways, choose one). The coordinates that you calculate should be the same as those returned by the mouse click.