diff options
author | bobzel <zzzman@gmail.com> | 2022-12-08 10:08:33 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-12-08 10:08:33 -0500 |
commit | 52a435b09013619209b8bcc6758baeca47d5d350 (patch) | |
tree | 0b8f24da5b18a5f5436c18b952c02fa2e03a91be /src/client/util/LinkFollower.ts | |
parent | 4d10925f535f3d2c09ab4fa01de83897cc13fc43 (diff) |
cleaned up animation effects to not reference presBox. fixed anchors in text to have link properties set properly from properties view.
Diffstat (limited to 'src/client/util/LinkFollower.ts')
-rw-r--r-- | src/client/util/LinkFollower.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/util/LinkFollower.ts b/src/client/util/LinkFollower.ts index fe7fc7369..0285803e8 100644 --- a/src/client/util/LinkFollower.ts +++ b/src/client/util/LinkFollower.ts @@ -105,8 +105,7 @@ export class LinkFollower { willPanZoom: BoolCast(LinkManager.getOppositeAnchor(linkDoc, target)?.followLinkZoom, false), zoomTime: NumCast(LinkManager.getOppositeAnchor(linkDoc, target)?.linkTransitionTime, 500), zoomScale: Cast(sourceDoc.linkZoomScale, 'number', null), - effect: StrCast(LinkManager.getOppositeAnchor(linkDoc, target)?.linkEffect) as PresEffect, - effectDirection: StrCast(LinkManager.getOppositeAnchor(linkDoc, target)?.linkEffectDirection) as PresEffectDirection, + effect: sourceDoc, originatingDoc: sourceDoc, }; if (target.TourMap) { |