diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-07 17:46:40 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-07 17:46:40 -0500 |
| commit | 871925ecc9f15377339afc907a2000fecfe3240d (patch) | |
| tree | e2bfce89356dd8850fca7eaaf0725fc1a79b2601 /src/client/views/nodes/DocumentView.tsx | |
| parent | 4c2584baf8bae0cde714c832b0768d3c08864422 (diff) | |
fixed presbox following to use presItem anchor instead of target doc as anchor. stopped allowing collections to have their data fields interpolate based on keyframe. fixed assigning current frame when following presbox
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
| -rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index dcccd1143..b9c07ef6f 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -104,7 +104,7 @@ export interface DocFocusOptions { openLocation?: string; // where to open a missing document zoomTextSelections?: boolean; // whether to display a zoomed overlay of anchor text selections toggleTarget?: boolean; // whether to toggle target on and off - originatingDoc?: Doc; // document that triggered the focus + anchorDoc?: Doc; // doc containing anchor info to apply at end of focus to target doc easeFunc?: 'linear' | 'ease'; // transition method for scrolling } export type DocFocusFunc = (doc: Doc, options: DocFocusOptions) => Opt<number>; |
