diff options
| author | bobzel <zzzman@gmail.com> | 2022-11-14 22:34:17 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-11-14 22:34:17 -0500 |
| commit | 9e6e0242cccaaa4b683049599cd769ae649a4669 (patch) | |
| tree | 8f139e683bd1ea5639b7adb2101bf5cf0a591cd8 /src/client/views/linking/LinkEditor.tsx | |
| parent | 3d8bd17fa4f031f2223840b336c313a18e7e87aa (diff) | |
added an inPlace property for setting up in place content menu patterns.
Diffstat (limited to 'src/client/views/linking/LinkEditor.tsx')
| -rw-r--r-- | src/client/views/linking/LinkEditor.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/linking/LinkEditor.tsx b/src/client/views/linking/LinkEditor.tsx index 1697062f4..2fb8e3d4c 100644 --- a/src/client/views/linking/LinkEditor.tsx +++ b/src/client/views/linking/LinkEditor.tsx @@ -282,6 +282,9 @@ export class LinkEditor extends React.Component<LinkEditorProps> { <div className="linkEditor-followingDropdown-option" onPointerDown={() => this.changeFollowBehavior('replace')}> Replace Tab </div> + <div className="linkEditor-followingDropdown-option" onPointerDown={() => this.changeFollowBehavior('inPlace')}> + In Place + </div> {this.props.linkDoc.linksToAnnotation ? ( <div className="linkEditor-followingDropdown-option" onPointerDown={() => this.changeFollowBehavior('openExternal')}> Always open in external page |
