diff options
author | bobzel <zzzman@gmail.com> | 2020-08-11 10:22:54 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-11 10:22:54 -0400 |
commit | 201dc881e15292ee4a013c72b9e473779cf14e18 (patch) | |
tree | e83dc80d049244716130770dfe7b21ef0e66b463 /src/client/documents/Documents.ts | |
parent | 30495903f786da3f63fb230a4c8edc0d7fbe83cf (diff) |
updated how background colors work
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 070fdf407..956a5645c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -174,6 +174,7 @@ export interface DocumentOptions { onPointerUp?: ScriptField; dropConverter?: ScriptField; // script to run when documents are dropped on this Document. dragFactory?: Doc; // document to create when dragging with a suitable onDragStart script + clickFactory?: Doc; // document to create when clicking on a button with a suitable onClick script onDragStart?: ScriptField; //script to execute at start of drag operation -- e.g., when a "creator" button is dragged this script generates a different document to drop clipboard?: Doc; UseCors?: boolean; |