Skip to content

Commit e62d66e

Browse files
authored
Fix typo
1 parent d15ed13 commit e62d66e

File tree

1 file changed

+1
-1
lines changed
  • versioned_docs/version-4.5/guides/javascript/reactive

1 file changed

+1
-1
lines changed

versioned_docs/version-4.5/guides/javascript/reactive/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ Drop-zone methods:
13511351

13521352
- `validateDropData(Object dropdata): boolean` each time a dragged element passes through a drop-zone, the DragDrop component will call this method to decide if the dragged element is valid for this drop-zone.
13531353
- `drop(Object dropdata): void` will be called only if a valid draggable data is dropped in the drop-zone. Important: the drop method should not re-validate the dragged data because the `DragDrop` will always call that handler after validateDropData, and only if it returns true.
1354-
- `(optional) hideDropZone (Object dragdata, Event event): void` will be executed when valid drag data (validateDropData returns true) enters the drop-zone. This method is used to add visual clues to the user that this is a drop-zone.
1354+
- `(optional) showDropZone (Object dragdata, Event event): void` will be executed when valid drag data (validateDropData returns true) enters the drop-zone. This method is used to add visual clues to the user that this is a drop-zone.
13551355
- `(optional) hideDropZone (Object dragdata, Event event): void` will be executed when valid drag data (validateDropData returns true) leaves the drop-zone. This method is used to remove visual clues to the user that this is a drop-zone.
13561356

13571357
The `DragDrop` element will switch on and off some CSS classes of the drop-zones:

0 commit comments

Comments
 (0)