From 5e2d104a2cf3f81dc4d8fcef5f38bb0ea71ce8bb Mon Sep 17 00:00:00 2001 From: Zeb Pykosz Date: Wed, 2 Mar 2016 12:35:39 -0500 Subject: [PATCH] add missing parenthesis to getClientOffset --- docs/03 Monitoring State/DragSourceMonitor.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/03 Monitoring State/DragSourceMonitor.md b/docs/03 Monitoring State/DragSourceMonitor.md index f380a41a12..7caf42eea0 100644 --- a/docs/03 Monitoring State/DragSourceMonitor.md +++ b/docs/03 Monitoring State/DragSourceMonitor.md @@ -23,8 +23,8 @@ DragSourceMonitor * **`getInitialSourceClientOffset()`**: Returns the `{ x, y }` client offset of the drag source component's root DOM node at the time when the current drag operation has started. Returns `null` if no item is being dragged. -* **`getClientOffset`**: Returns the last recorded `{ x, y }` client offset of the pointer while a drag operation is in progress. Returns `null` if no item is being dragged. +* **`getClientOffset()`**: Returns the last recorded `{ x, y }` client offset of the pointer while a drag operation is in progress. Returns `null` if no item is being dragged. * **`getDifferenceFromInitialOffset()`**: Returns the `{ x, y }` difference between the last recorded client offset of the pointer and the client offset when current the drag operation has started. Returns `null` if no item is being dragged. -* **`getSourceClientOffset()`**: Returns the projected `{ x, y }` client offset of the drag source component's root DOM node, based on its position at the time when the current drag operation has started, and the movement difference. Returns `null` if no item is being dragged. \ No newline at end of file +* **`getSourceClientOffset()`**: Returns the projected `{ x, y }` client offset of the drag source component's root DOM node, based on its position at the time when the current drag operation has started, and the movement difference. Returns `null` if no item is being dragged.