diff options
author | bobzel <zzzman@gmail.com> | 2022-11-04 14:34:46 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-11-04 14:34:46 -0400 |
commit | 31a51e9dda07e48c88166bffbc8f1ad7166cd624 (patch) | |
tree | 848060dc1d5c358b2f5d2576e4269265a3f143fe /src/client/views/nodes/formattedText/DashFieldView.tsx | |
parent | fe98c7d46df1852a74cd84dbe9ad010bfb3d5550 (diff) |
more fixes to sidebar annotations of pdfs to improve link following.
Diffstat (limited to 'src/client/views/nodes/formattedText/DashFieldView.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/DashFieldView.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/nodes/formattedText/DashFieldView.tsx b/src/client/views/nodes/formattedText/DashFieldView.tsx index fbcf25215..afae59733 100644 --- a/src/client/views/nodes/formattedText/DashFieldView.tsx +++ b/src/client/views/nodes/formattedText/DashFieldView.tsx @@ -17,7 +17,6 @@ import { Tooltip } from '@material-ui/core'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { CollectionViewType } from '../../../documents/DocumentTypes'; import { NodeSelection } from 'prosemirror-state'; -import { FormattedTextBoxComment } from './FormattedTextBoxComment'; export class DashFieldView { dom: HTMLDivElement; // container for label and value @@ -29,7 +28,6 @@ export class DashFieldView { this.dom.style.height = node.attrs.height; this.dom.style.position = 'relative'; this.dom.style.display = 'inline-block'; - //this.dom.contentEditable = 'true'; this.dom.onkeypress = function (e: any) { e.stopPropagation(); }; @@ -56,7 +54,6 @@ export class DashFieldView { } selectNode() { this.dom.classList.add('ProseMirror-selectednode'); - console.log('SELECT'); } } |