diff options
author | bobzel <zzzman@gmail.com> | 2022-06-09 11:09:09 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-06-09 11:09:09 -0400 |
commit | 94930d2867b59668dd6838db197ea051fc33b347 (patch) | |
tree | 201d1a55ab26224482cb1cce8e1daee64a2c1d47 /src/client/documents/Documents.ts | |
parent | 6b9b7fefe5fa485b58512fdab10934c26092ab15 (diff) | |
parent | 3213c24210d67af0a4b027863773ad383404a59c (diff) |
Merge branch 'master' into master-cleanup
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 832f44571..088593871 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -114,7 +114,8 @@ export class DocumentOptions { _dimMagnitude?: NUMt = new NumInfo("magnitude of collectionMulti{row,col} element's width or height", true); _dimUnit?: DIMt = new DimInfo("units of collectionMulti{row,col} element's width or height - 'px' or '*' for pixels or relative units", true); _fitWidth?: BOOLt = new BoolInfo("whether document should scale its contents to fit its rendered width or not (e.g., for PDFviews)", true); - _fitToBox?: boolean; // whether a freeformview should zoom/scale to create a shrinkwrapped view of its contents + _fitContentsToBox?: boolean; // whether a freeformview should zoom/scale to create a shrinkwrapped view of its contents + _contentBounds?: List<number>; // the (forced) bounds of the document to display. format is: [left, top, right, bottom] _lockedPosition?: boolean; // lock the x,y coordinates of the document so that it can't be dragged _lockedTransform?: boolean; // lock the panx,pany and scale parameters of the document so that it be panned/zoomed _isPushpin?: boolean; // whether document, when clicked, toggles display of its link target |