diff options
author | andrewdkim <adkim414@gmail.com> | 2020-02-12 03:37:51 -0500 |
---|---|---|
committer | andrewdkim <adkim414@gmail.com> | 2020-02-12 03:37:51 -0500 |
commit | d1b9049fe50e401ac1a33177babd0cfa4b32f6a0 (patch) | |
tree | 6df9a57fbceac3eaceb04061a9c88b2a5d3059b3 /src/client/util/DragManager.ts | |
parent | 864cba561db8e26240b093da7ab524e76c8823d1 (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.ts | 1 |
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); |