diff options
author | bobzel <zzzman@gmail.com> | 2022-06-09 16:58:53 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-06-09 16:58:53 -0400 |
commit | 8ef0c6c08bd9c2e3654477b039686bab6b0ff991 (patch) | |
tree | cd06f17e057a47d72f5435c650c36adacb9eab1b /src/client/documents/Documents.ts | |
parent | dde011efbfc366dbc3bb04b52fdb6e30fcca37f5 (diff) | |
parent | efb32ff12d94bff4474ac7ae57fbae754423a61a (diff) |
Merge branch 'master' into mainview-jenny
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 |