diff options
| author | bobzel <zzzman@gmail.com> | 2024-05-18 23:15:49 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-05-18 23:15:49 -0400 |
| commit | 9badfc489f00afd10489f0dde0a3b9e21817feb5 (patch) | |
| tree | b69d90fb3525d0bfca4a107ec1640e4706c0dfb6 /src/client/views/DocComponent.tsx | |
| parent | 38d2d361aa723917b5721e2635933d2d8b9f483a (diff) | |
more cardView cleanup
Diffstat (limited to 'src/client/views/DocComponent.tsx')
| -rw-r--r-- | src/client/views/DocComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocComponent.tsx b/src/client/views/DocComponent.tsx index ef4257937..de4df1830 100644 --- a/src/client/views/DocComponent.tsx +++ b/src/client/views/DocComponent.tsx @@ -35,7 +35,7 @@ export interface ViewBoxInterface { addDocument?: (doc: Doc | Doc[], annotationKey?: string) => boolean; // add a document (used only by collections) removeDocument?: (doc: Doc | Doc[], annotationKey?: string, leavePushpin?: boolean, dontAddToRemoved?: boolean) => boolean; // add a document (used only by collections) select?: (ctrlKey: boolean, shiftKey: boolean) => void; - focus?: (textAnchor: Doc, options: FocusViewOptions) => Opt<number>; + focus?: (textAnchor: Doc, options: FocusViewOptions) => Opt<number>; viewTransition?: () => Opt<string>; // duration of a view transition animation isAnyChildContentActive?: () => boolean; // is any child content of the document active onClickScriptDisable?: () => 'never' | 'always'; // disable click scripts : never, always, or undefined = only when selected |
