diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-17 17:03:32 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-17 17:03:32 -0400 |
| commit | c885ae59ea378648dcc70b6f17dac2d3999c60b1 (patch) | |
| tree | 109b7d59704ab9ca3eab4552e7398122772f5503 /src/client/util/LinkFollower.ts | |
| parent | 8aeab8c3f25c556e39f3e9e58f9c321e79459df8 (diff) | |
fixed clicking and dragging stackedTimeline anchors. updated followLink parameters
Diffstat (limited to 'src/client/util/LinkFollower.ts')
| -rw-r--r-- | src/client/util/LinkFollower.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/LinkFollower.ts b/src/client/util/LinkFollower.ts index eacbcc0e3..785018990 100644 --- a/src/client/util/LinkFollower.ts +++ b/src/client/util/LinkFollower.ts @@ -27,7 +27,7 @@ export class LinkFollower { // follows a link - if the target is on screen, it highlights/pans to it. // if the target isn't onscreen, then it will open up the target in the lightbox, or in place // depending on the followLinkLocation property of the source (or the link itself as a fallback); - public static FollowLink = (linkDoc: Opt<Doc>, sourceDoc: Doc, docViewProps: DocumentViewSharedProps, altKey: boolean) => { + public static FollowLink = (linkDoc: Opt<Doc>, sourceDoc: Doc, altKey: boolean) => { const batch = UndoManager.StartBatch('follow link click'); runInAction(() => (DocumentDecorations.Instance.overrideBounds = true)); // turn off decoration bounds while following links since animations may occur, and DocDecorations is based on screenToLocal which is not always an observable value LinkFollower.traverseLink( |
