From 3264c4bccb9a3eb948fce34b93888ea26eb06899 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Thu, 25 Mar 2021 18:07:22 -0300 Subject: [PATCH] typo --- 2-ui/3-event-details/4-mouse-drag-and-drop/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/3-event-details/4-mouse-drag-and-drop/article.md b/2-ui/3-event-details/4-mouse-drag-and-drop/article.md index 6cb1152c..49ab88be 100644 --- a/2-ui/3-event-details/4-mouse-drag-and-drop/article.md +++ b/2-ui/3-event-details/4-mouse-drag-and-drop/article.md @@ -124,7 +124,7 @@ Let's update our algorithm: ```js // onmousemove - // ball has position:absoute + // ball has position:absolute ball.style.left = event.pageX - *!*shiftX*/!* + 'px'; ball.style.top = event.pageY - *!*shiftY*/!* + 'px'; ```