aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/FormattedTextBox.tsx
diff options
context:
space:
mode:
authormonikahedman <monika_hedman@brown.edu>2019-08-22 12:08:12 -0400
committermonikahedman <monika_hedman@brown.edu>2019-08-22 12:08:12 -0400
commitf0f0cc36654183921076db5a341fe7cac2bfdd3c (patch)
tree7f11d93e77125f0f7ecef238a1b2ea02fb439448 /src/client/views/nodes/FormattedTextBox.tsx
parent135da417387b5fef28df8f07266d404be8211320 (diff)
cleaned up
Diffstat (limited to 'src/client/views/nodes/FormattedTextBox.tsx')
-rw-r--r--src/client/views/nodes/FormattedTextBox.tsx9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/client/views/nodes/FormattedTextBox.tsx b/src/client/views/nodes/FormattedTextBox.tsx
index 0c0ab4d87..1db66d4a0 100644
--- a/src/client/views/nodes/FormattedTextBox.tsx
+++ b/src/client/views/nodes/FormattedTextBox.tsx
@@ -145,7 +145,7 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
paste = (e: ClipboardEvent) => {
- //this is throwing a ton of erros so i had to comment it out
+ //this is throwing a ton of errors so commented it out
if (e.clipboardData && this._editorView) {
// let pdfPasteText = `${Utils.GenerateDeterministicGuid("pdf paste")}`;
// for (let i = 0; i < e.clipboardData.items.length; i++) {
@@ -173,13 +173,6 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
}
}
- public setText = (text: string) => {
- const tx = this._editorView!.state.tr.insertText(text);
- const state = this._editorView!.state;
- this._editorView!.dispatch(tx);
- return new RichTextField(JSON.stringify(state.toJSON()));
- }
-
dispatchTransaction = (tx: Transaction) => {
if (this._editorView) {
const state = this._editorView.state.apply(tx);