diff options
author | bob <bcz@cs.brown.edu> | 2020-01-22 12:53:40 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-01-22 12:53:40 -0500 |
commit | 6b1e9b68c3d409df6ea2a8909b99d5d8d75226c5 (patch) | |
tree | c019bec49bfb8079ce1f83dbf6a6944a45bf6787 /src/client/documents/Documents.ts | |
parent | 5a6f6868dc25b2b24c6c7f4a7bc25670e6a35f47 (diff) |
various fixes to pivot view related things.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 634c223a7..e86ed52f3 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -88,7 +88,7 @@ export interface DocumentOptions { defaultBackgroundColor?: string; dropAction?: dropActionType; chromeStatus?: string; - disableLOD?: boolean; + LODdisable?: boolean; columnWidth?: number; fontSize?: number; curPage?: number; @@ -107,6 +107,7 @@ export interface DocumentOptions { ischecked?: ScriptField; // returns whether a font icon box is checked activePen?: Doc; // which pen document is currently active (used as the radio button state for the 'unhecked' pen tool scripts) onClick?: ScriptField; + onChildClick?: ScriptField; // script given to children of a collection to execute when they are clicked onPointerDown?: ScriptField; onPointerUp?: ScriptField; dragFactory?: Doc; // document to create when dragging with a suitable onDragStart script |