diff options
author | bob <bcz@cs.brown.edu> | 2019-07-08 10:54:53 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-07-08 10:54:53 -0400 |
commit | 400c525875af607dd76d7ec46949fedc418caabf (patch) | |
tree | 3cfa74f4290cab9b4699a66a2be24d30c8b9fea9 /src/client/util/DragManager.ts | |
parent | 1f1ca5f25803d2ba8f1c5afc4c6552388f722816 (diff) |
fixed annotation dragging on PDFs. fixed panning after zooming on images.
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index ce1f9d890..a269d7eba 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -321,6 +321,7 @@ export namespace DragManager { dragElement.style.top = "0"; dragElement.style.bottom = ""; dragElement.style.left = "0"; + dragElement.style.transition = "none"; dragElement.style.color = "black"; dragElement.style.transformOrigin = "0 0"; dragElement.style.zIndex = globalCssVariables.contextMenuZindex;// "1000"; |