Skip to content

Commit f7fd3e8

Browse files
authored
numeration
1 parent ce863fe commit f7fd3e8

File tree

1 file changed

+2
-2
lines changed
  • 2-ui/3-event-details/4-mouse-drag-and-drop

1 file changed

+2
-2
lines changed

2-ui/3-event-details/4-mouse-drag-and-drop/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ ball.onmousedown = function(event) {
156156
moveAt(event.pageX, event.pageY);
157157
}
158158
159-
// (3) move the ball on mousemove
159+
// move the ball on mousemove
160160
document.addEventListener('mousemove', onMouseMove);
161161
162-
// (4) drop the ball, remove unneeded handlers
162+
// drop the ball, remove unneeded handlers
163163
ball.onmouseup = function() {
164164
document.removeEventListener('mousemove', onMouseMove);
165165
ball.onmouseup = null;

0 commit comments

Comments
 (0)