aboutsummaryrefslogtreecommitdiff
path: root/src/documents/Documents.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-03 22:35:33 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-03 22:35:33 -0500
commite6871754b90e2179a140c6f0c365b95be80e245b (patch)
treeb84d122909540036df201a93e7ec375e9f81d7e8 /src/documents/Documents.ts
parent0748b6c92a0a8239596330bc0ba2054ee114a943 (diff)
Added preview box in schema view, added ScrollBox control,
added resizable grid layout, cleaned up some styling for collection freeform view
Diffstat (limited to 'src/documents/Documents.ts')
-rw-r--r--src/documents/Documents.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documents/Documents.ts b/src/documents/Documents.ts
index a5edebda2..932abf7bc 100644
--- a/src/documents/Documents.ts
+++ b/src/documents/Documents.ts
@@ -57,7 +57,7 @@ export namespace Documents {
export function TextDocument(options: DocumentOptions = {}): Document {
let doc = GetTextPrototype().MakeDelegate();
setupOptions(doc, options);
- doc.SetField(KeyStore.Data, new RichTextField());
+ // doc.SetField(KeyStore.Data, new RichTextField());
return doc;
}