diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-24 16:34:37 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-24 16:34:37 -0500 |
| commit | 34ba9b8c3ce48c51dfb1d330d5285e0eadf92030 (patch) | |
| tree | 953dcc1fb0e81b4197266122a8ce969a7459aa9d /src/client/views/PreviewCursor.tsx | |
| parent | 557e0fd8c41fbae8ddc0ba34be786c912338db23 (diff) | |
| parent | 416541c18545cabe0c1b25d698770d7a50a9136e (diff) | |
made dataDoc be a data doc, not a layout doc & stopped expanding templates in DocumentContentsView. changed autoHeight to be _autoHeight layout property.
Diffstat (limited to 'src/client/views/PreviewCursor.tsx')
| -rw-r--r-- | src/client/views/PreviewCursor.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/PreviewCursor.tsx b/src/client/views/PreviewCursor.tsx index 831d9ca0b..7993e951e 100644 --- a/src/client/views/PreviewCursor.tsx +++ b/src/client/views/PreviewCursor.tsx @@ -42,7 +42,7 @@ export class PreviewCursor extends React.Component<{}> { if (re.test(e.clipboardData.getData("text/plain"))) { const url = e.clipboardData.getData("text/plain"); return PreviewCursor._addDocument(Docs.Create.WebDocument(url, { - title: url, width: 500, height: 300, + title: url, _width: 500, _height: 300, // nativeWidth: 300, nativeHeight: 472.5, x: newPoint[0], y: newPoint[1] })); @@ -50,9 +50,9 @@ export class PreviewCursor extends React.Component<{}> { // creates text document return PreviewCursor._addLiveTextDoc(Docs.Create.TextDocument({ - width: 500, + _width: 500, limitHeight: 400, - autoHeight: true, + _autoHeight: true, x: newPoint[0], y: newPoint[1], title: "-pasted text-" |
