aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-10-23 10:39:53 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-10-23 10:39:53 -0400
commit3c8d5d0a53d03d570fd57789ecf43121eb814b0f (patch)
tree0892a3f435d09c47d9dc611711dc3c50e021ace6 /src/client/documents/Documents.ts
parent34d9788b86e896a482be7fb959fef14dcc6f1c3d (diff)
several fixes to audio to better support generic timecode linking
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 5ae4ca82a..cad417d33 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -84,7 +84,7 @@ export interface DocumentOptions {
columnWidth?: number;
fontSize?: number;
curPage?: number;
- currentTimecode?: number; // the current timecode of a time-based document (e.g., current time of a video)
+ currentTimecode?: number; // the current timecode of a time-based document (e.g., current time of a video) value is in seconds
displayTimecode?: number; // the time that a document should be displayed (e.g., time an annotation should be displayed on a video)
documentText?: string;
borderRounding?: string;
@@ -104,7 +104,7 @@ export interface DocumentOptions {
gridGap?: number; // gap between items in masonry view
xMargin?: number; // gap between left edge of document and start of masonry/stacking layouts
yMargin?: number; // gap between top edge of dcoument and start of masonry/stacking layouts
- panel?: Doc; // panel to display in 'targetContainer' as the result of a button onClick script
+ sourcePanel?: Doc; // panel to display in 'targetContainer' as the result of a button onClick script
targetContainer?: Doc; // document whose proto will be set to 'panel' as the result of a onClick click script
dropConverter?: ScriptField; // script to run when documents are dropped on this Document.
// [key: string]: Opt<Field>;