diff options
author | bobzel <zzzman@gmail.com> | 2020-09-03 15:59:51 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-03 15:59:51 -0400 |
commit | 3ba4d0b56b5a0428d1b363ee05b419b954a2b071 (patch) | |
tree | deb25b5e277a6e91d7ec982fb71f2211c7ff6911 /src/fields/documentSchemas.ts | |
parent | 91a30e512b93937409c2fb3299dc52fc2a87c22a (diff) |
fixed linking pdf selections to rtf selections.
Diffstat (limited to 'src/fields/documentSchemas.ts')
-rw-r--r-- | src/fields/documentSchemas.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/documentSchemas.ts b/src/fields/documentSchemas.ts index 76b26a9aa..71294c59c 100644 --- a/src/fields/documentSchemas.ts +++ b/src/fields/documentSchemas.ts @@ -95,7 +95,7 @@ export const documentSchema = createSchema({ onPointerDown: ScriptField, // script to run when document is clicked (can be overriden by an onClick prop) onPointerUp: ScriptField, // script to run when document is clicked (can be overriden by an onClick prop) onDragStart: ScriptField, // script to run when document is dragged (without being selected). the script should return the Doc to be dropped. - followLinkLocation: "string",// flag for where to place content when following a click interaction (e.g., onRight, inPlace, inTab, ) + followLinkLocation: "string",// flag for where to place content when following a click interaction (e.g., add:right, inPlace, default, ) hideLinkButton: "boolean", // whether the blue link counter button should be hidden hideAllLinks: "boolean", // whether all individual blue anchor dots should be hidden linkDisplay: "boolean", // whether a link connection should be shown between link anchor endpoints. |