diff options
| author | bobzel <zzzman@gmail.com> | 2021-03-14 00:09:37 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-03-14 00:09:37 -0500 |
| commit | c5ea9a228d97974250194cbe41e0f356c3c3906f (patch) | |
| tree | 5d504857d533092e27ec196c795bb3506a524d38 /src/client/documents | |
| parent | 7a25dcc004de773fbdee229f79338b81001d3077 (diff) | |
added sidebar annotations to webBox. Fixed PdfBox to allow marqueeing when sidebar annotation is selected.
Diffstat (limited to 'src/client/documents')
| -rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index e8ecd8362..2ed69a993 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -816,7 +816,7 @@ export namespace Docs { export function PdfDocument(url: string, options: DocumentOptions = {}) { const pdfProto = Prototypes.get(DocumentType.PDF); pdfProto._fitWidth = true; // backward compatibility -- can be removed after db is reset - return InstanceFromProto(pdfProto, new PdfField(new URL(url)), { _viewType: "stacking", ...options }); + return InstanceFromProto(pdfProto, new PdfField(new URL(url)), { ...options }); } export function WebDocument(url: string, options: DocumentOptions = {}) { |
