aboutsummaryrefslogtreecommitdiff
path: root/src/fields
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-06-10 16:05:45 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-06-10 16:05:45 -0400
commit4ec18458fd21bd7d7307a3bab2e787346fc3ed0d (patch)
tree233853464311ec801fbfa80510e9fff8bcc089ca /src/fields
parentc3bbedc622080c6087c862d6fb0c8b3438d51edc (diff)
parent1daca67ea2a574b16c02b185d66f5724651ba235 (diff)
Merge branch 'ink_menu'
Diffstat (limited to 'src/fields')
-rw-r--r--src/fields/documentSchemas.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/documentSchemas.ts b/src/fields/documentSchemas.ts
index 353333028..40dadf5a8 100644
--- a/src/fields/documentSchemas.ts
+++ b/src/fields/documentSchemas.ts
@@ -84,7 +84,7 @@ export const documentSchema = createSchema({
_lockedTransform: "boolean",// whether a freeformview can pan/zoom
// drag drop properties
- cantLeaveCollection: "boolean",// whether document can be dropped into a different collection
+ stayInCollection: "boolean",// whether document can be dropped into a different collection
dragFactory: Doc, // the document that serves as the "template" for the onDragStart script. ie, to drag out copies of the dragFactory document.
dropAction: "string", // override specifying what should happen when this document is dropped (can be "alias", "copy", "move")
targetDropAction: "string", // allows the target of a drop event to specify the dropAction ("alias", "copy", "move") NOTE: if the document is dropped within the same collection, the dropAction is coerced to 'move'