diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-12-12 21:00:36 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-12-12 21:00:36 -0500 |
commit | eead07720f1f196e9ee81cd44b26759dc44e04f9 (patch) | |
tree | 17e1b9a0d37d81322ed6b2539623e104e0c35351 /src/client/documents/Documents.ts | |
parent | 634475c34cdc49672edebb722e469ed627d495c2 (diff) |
fixed warnings. Limited the size of pasted text boxes
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 5d5bdfcbd..7df08c7e6 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -112,6 +112,7 @@ export interface DocumentOptions { dropConverter?: ScriptField; // script to run when documents are dropped on this Document. strokeWidth?: number; color?: string; + limitHeight?:number; // maximum height for newly created (eg, from pasting) text documents // [key: string]: Opt<Field>; } |