diff options
author | andrewdkim <adkim414@gmail.com> | 2019-12-10 17:55:13 -0500 |
---|---|---|
committer | andrewdkim <adkim414@gmail.com> | 2019-12-10 17:55:13 -0500 |
commit | a24f9da758415c60dbcb56b1cb488bec02d5b1a0 (patch) | |
tree | b1eb034758994e2c9ce5c29ee6b2c48b5d98ac57 /src/client/views/nodes/DocumentView.tsx | |
parent | be753f6c952d8f1fc324d2c076095416b6d98a35 (diff) |
some changes
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 467fd4b32..6c3dd2051 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -669,10 +669,10 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu return <div className={`documentView-node${this.topMost ? "-topmost" : ""}`} ref={this._mainCont} onDrop={this.onDrop} onContextMenu={this.onContextMenu} onPointerDown={this.onPointerDown} onClick={this.onClick} onPointerEnter={e => { - console.log("Brush" + this.props.Document.title); + //console.log("Brush" + this.props.Document.title); Doc.BrushDoc(this.props.Document); }} onPointerLeave={e => { - console.log("UnBrush" + this.props.Document.title); + //console.log("UnBrush" + this.props.Document.title); Doc.UnBrushDoc(this.props.Document); }} |