aboutsummaryrefslogtreecommitdiff
path: root/src/documents/Documents.ts
diff options
context:
space:
mode:
authoryipstanley <stanley_yip@brown.edu>2019-01-20 19:48:08 -0500
committeryipstanley <stanley_yip@brown.edu>2019-01-20 19:48:08 -0500
commitb0a8b59b967eae3d5812fd8e54e9f4f7a3fb80fc (patch)
treebc30e4bb0dc1cf5ec47c50e2e5317baf12294808 /src/documents/Documents.ts
parent481ca03c47962b301199285feebdb73a66818a9f (diff)
parent6cf622dda54e5b1793138c0492d71b574a6e8d75 (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into move_doc_get_out_the_way
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 442fb00c7..cc08f4123 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;
}