diff options
author | bobzel <zzzman@gmail.com> | 2023-03-10 21:48:11 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-03-10 21:48:11 -0500 |
commit | 0fb643d13dc7dbdcd4ae0f4785f8f2bd3fbbc764 (patch) | |
tree | 1bb65dba61342d012238c58fc2a23cb755a0765c /src/client/documents/Documents.ts | |
parent | 096371e683b3f91edfadb2aaf9f8da3309b86014 (diff) |
fixed image anchors to save zoom/pan info and to focus() on content when following anchors. fixed progresivized items in trails to not allow dragging items out or dropping new items in.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 6296b0df4..4dc1c3b71 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -261,6 +261,9 @@ export class DocumentOptions { activeFrame?: number; // the active frame of a document in a frame base collection appearFrame?: number; // the frame in which the document appears viewTransitionTime?: number; // transition duration for view parameters + presPanX?: number; // panX saved as a view spec + presPanY?: number; // panY saved as a view spec + presViewScale?: number; // viewScale saved as a view Spec presTransition?: number; //the time taken for the transition TO a document presDuration?: number; //the duration of the slide in presentation view presZoomText?: boolean; // whether text anchors should shown in a larger box when following links to make them stand out |