aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2020-02-12 03:37:51 -0500
committerandrewdkim <adkim414@gmail.com>2020-02-12 03:37:51 -0500
commitd1b9049fe50e401ac1a33177babd0cfa4b32f6a0 (patch)
tree6df9a57fbceac3eaceb04061a9c88b2a5d3059b3 /src/client/util/DragManager.ts
parent864cba561db8e26240b093da7ab524e76c8823d1 (diff)
can select text from web node and upload from mobile
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r--src/client/util/DragManager.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts
index bf64e0bdb..5d4b8fc8a 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -289,7 +289,6 @@ export namespace DragManager {
if (!ele.parentNode) dragDiv.appendChild(ele);
const dragElement = ele.parentNode === dragDiv ? ele : ele.cloneNode(true) as HTMLElement;
const rect = ele.getBoundingClientRect();
- console.log("boudning", rect);
const scaleX = rect.width / ele.offsetWidth,
scaleY = rect.height / ele.offsetHeight;
xs.push(rect.left);