diff options
author | bobzel <zzzman@gmail.com> | 2020-09-10 20:10:58 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-10 20:10:58 -0400 |
commit | 51eea45ec6ee39cb83ee3b0780ad262b8b8b5dd8 (patch) | |
tree | 0552d9d7be43a80fc641ecb33b8251d4317695d4 /src/client/documents/Documents.ts | |
parent | 57d7a09f7b8834382ab2974f70a2c5be7a694cd7 (diff) |
made basic progressivized slides using TreeView
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 2f7b5a449..f67887c09 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -130,6 +130,7 @@ export interface DocumentOptions { opacity?: number; defaultBackgroundColor?: string; _isBackground?: boolean; + "_isBackground-canClick"?: boolean; // a background document that you can still click on to edit its contents isLinkButton?: boolean; _columnWidth?: number; _fontSize?: string; @@ -195,6 +196,7 @@ export interface DocumentOptions { treeViewExpandedView?: string; // which field/thing is displayed when this item is opened in tree view treeViewChecked?: ScriptField; // script to call when a tree view checkbox is checked treeViewTruncateTitleWidth?: number; + treeViewOutlineMode?: boolean; // whether slide should function as a text outline treeViewLockExpandedView?: boolean; // whether the expanded view can be changed treeViewDefaultExpandedView?: string; // default expanded view limitHeight?: number; // maximum height for newly created (eg, from pasting) text documents |