diff options
author | Stanley Yip <stanley_yip@brown.edu> | 2020-02-23 14:24:07 -0500 |
---|---|---|
committer | Stanley Yip <stanley_yip@brown.edu> | 2020-02-23 14:24:07 -0500 |
commit | f1fcbeea5fb103b7623e795e72aacd4dfacc6c70 (patch) | |
tree | b599d8743157ea6552714949e998ae0954f3d854 /src/client/util/DragManager.ts | |
parent | a8b19e82d8c9a8350609e64e60848dbfbbbb6dcd (diff) | |
parent | 0299ecb4db88560fe623b429f36191402c00b264 (diff) |
final commits before demo
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); |