diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-19 00:27:59 -0500 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-01-19 00:27:59 -0500 |
commit | 87495cce1e23b25312efc56a84b849babf367e82 (patch) | |
tree | b7d0805589d961701b2376415e7372fec0b383ed /src/documents/Documents.ts | |
parent | 657b07e5a0a4d73a0b9cd9b82b69178b1658ce8b (diff) |
Got basic version of ProseMirror working
Diffstat (limited to 'src/documents/Documents.ts')
-rw-r--r-- | src/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documents/Documents.ts b/src/documents/Documents.ts index bba678bbd..beee44bee 100644 --- a/src/documents/Documents.ts +++ b/src/documents/Documents.ts @@ -44,7 +44,7 @@ export namespace Documents { export function TextDocument(text: string, options:DocumentOptions = {}): Document { let doc = GetTextPrototype().MakeDelegate(); setupOptions(doc, options); - doc.SetField(KeyStore.Data, new TextField(text)); + // doc.SetField(KeyStore.Data, new TextField(text)); return doc; } |