diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-05 09:36:13 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-05 09:36:13 -0400 |
| commit | b725cbb244136ddfffad24d4ac68b9beb31845a3 (patch) | |
| tree | 3454b151cf9aea7feec9fc3d1d95f08da5f0b2b8 /src/client/views/GlobalKeyHandler.ts | |
| parent | 8e14d42c61efb0ee5547fbcb7ec9131a7f0ff74f (diff) | |
stopped ctrl-a from selecting doucment.body. prevented pdfviewer's texxt layer from scrolling horizontally when text annotations go out of bounds horizontally. fixed text boxes to not grab selectonOnLoad focus unless they're in an active tab.
Diffstat (limited to 'src/client/views/GlobalKeyHandler.ts')
| -rw-r--r-- | src/client/views/GlobalKeyHandler.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/views/GlobalKeyHandler.ts b/src/client/views/GlobalKeyHandler.ts index c48ba109a..b9b771027 100644 --- a/src/client/views/GlobalKeyHandler.ts +++ b/src/client/views/GlobalKeyHandler.ts @@ -223,6 +223,11 @@ export class KeyManager { stopPropagation = false; break; case "a": + if (e.target !== document.body) { + stopPropagation = false; + preventDefault = false; + }; + break; case "v": stopPropagation = false; preventDefault = false; |
