docs: fix typo (missing verb)

This commit is contained in:
Kushank Sriraj 2022-07-27 16:36:24 +05:30 committed by GitHub
parent 7000ede297
commit e850873e56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ The basic Drag'n'Drop algorithm looks like this:
2. Then on `mousemove` move it by changing `left/top` with `position:absolute`. 2. Then on `mousemove` move it by changing `left/top` with `position:absolute`.
3. On `mouseup` - perform all actions related to finishing the drag'n'drop. 3. On `mouseup` - perform all actions related to finishing the drag'n'drop.
These are the basics. Later we'll see how to other features, such as highlighting current underlying elements while we drag over them. These are the basics. Later we'll see how to add other features, such as highlighting current underlying elements while we drag over them.
Here's the implementation of dragging a ball: Here's the implementation of dragging a ball: