diff options
author | Hannah <hannah_chow@brown.edu> | 2019-02-10 22:13:15 -0500 |
---|---|---|
committer | Hannah <hannah_chow@brown.edu> | 2019-02-10 22:13:15 -0500 |
commit | d89b1039ecc05d4d6c40fc38f51da9cee0c00af6 (patch) | |
tree | 78efb2bf197528ba5b656709733ac7b0c2f7a878 /src | |
parent | 099c5823f05285fc5086c5a433658cf06dc4a04b (diff) |
Small changes for starting annotations
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/nodes/AnnotationView.tsx | 0 | ||||
-rw-r--r-- | src/client/views/nodes/FormattedTextBox.tsx | 2 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/nodes/AnnotationView.tsx b/src/client/views/nodes/AnnotationView.tsx new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/src/client/views/nodes/AnnotationView.tsx diff --git a/src/client/views/nodes/FormattedTextBox.tsx b/src/client/views/nodes/FormattedTextBox.tsx index 8bc4c902c..eead43b9f 100644 --- a/src/client/views/nodes/FormattedTextBox.tsx +++ b/src/client/views/nodes/FormattedTextBox.tsx @@ -1,5 +1,4 @@ import { action, IReactionDisposer, reaction } from "mobx"; -import { observer } from "mobx-react" import { baseKeymap } from "prosemirror-commands"; import { history, redo, undo } from "prosemirror-history"; import { keymap } from "prosemirror-keymap"; @@ -31,7 +30,6 @@ import { CollectionFreeFormDocumentView } from "./CollectionFreeFormDocumentView // specified Key and assigns it to an HTML input node. When changes are made tot his node, // this will edit the document and assign the new value to that field. //] -@observer export class FormattedTextBox extends React.Component<FieldViewProps> { public static LayoutString() { return FieldView.LayoutString("FormattedTextBox"); } |