diff options
author | bobzel <zzzman@gmail.com> | 2022-09-27 14:56:28 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-09-27 14:56:28 -0400 |
commit | 4580a4193edb451f628eee8be2d3c31d06b1a3a7 (patch) | |
tree | 304de600d9c935fb065a34fce450b264d09f9062 /src/client/documents/Documents.ts | |
parent | c89d1bf84a352b40749deeddf39591020550cd31 (diff) |
fixed so that following link to video doesn't zoom the video (works the same way as PDFs or web pages -- if the document is 'scrollable', then don't zoom in on it as well).
Diffstat (limited to 'src/client/documents/Documents.ts')
-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 f046af684..fb68fba38 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1307,7 +1307,7 @@ export namespace DocUtils { }); } - export function DefaultFocus(doc: Doc, options?: DocFocusOptions) { + export function DefaultFocus(doc: Doc, options: DocFocusOptions) { options?.afterFocus?.(false); } |