aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm
diff options
context:
space:
mode:
authortschicke-brown <tyler_schicke@brown.edu>2019-06-27 12:43:26 -0400
committerGitHub <noreply@github.com>2019-06-27 12:43:26 -0400
commit967eb0fd2d3e240662c8a344a69df3dbf07a7268 (patch)
treee14259f6b25108101101cf1b8cc52cb10dcfe5c4 /src/client/views/collections/collectionFreeForm
parent522ec4097d6f08c6a1025dac37f68152c47df339 (diff)
parent2e2740967885174ef202aa9aa35f7359bc300947 (diff)
Merge pull request #175 from browngraphicslab/text_box_ab
Text box ab
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
-rw-r--r--src/client/views/collections/collectionFreeForm/MarqueeView.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
index 61f0bf7ca..2a78cda2f 100644
--- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
+++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx
@@ -183,9 +183,9 @@ export class MarqueeView extends React.Component<MarqueeViewProps>
@action
onPointerUp = (e: PointerEvent): void => {
- console.log("pointer up!");
+ // console.log("pointer up!");
if (this._visible) {
- console.log("visible");
+ // console.log("visible");
let mselect = this.marqueeSelect();
if (!e.shiftKey) {
SelectionManager.DeselectAll(mselect.length ? undefined : this.props.container.props.Document);
@@ -194,7 +194,7 @@ export class MarqueeView extends React.Component<MarqueeViewProps>
mselect.length ? this.cleanupInteractions(true, false) : this.cleanupInteractions(true);
}
else {
- console.log("invisible");
+ //console.log("invisible");
this.cleanupInteractions(true);
}