diff options
author | bobzel <zzzman@gmail.com> | 2021-02-12 22:25:40 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-02-12 22:25:40 -0500 |
commit | d9ec489c2f549c4aef0b3f458abfda5bb11e7188 (patch) | |
tree | 37cd972de5b5afa9cdd760ec3035d433090aa556 /src/client/documents/Documents.ts | |
parent | d8bb0894ce986329c55837e32591bcf5b9f8ed4b (diff) |
changed audio video annotation to use only timecodeToShow/timecodeToHide. distinguish timeline annotation from video frame annotations with _timelineLabel field. Lightbox improvements to restore original camera values and to use fitContentsToDoc for collections
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 aafa58028..d72efb1b4 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -155,6 +155,7 @@ export interface DocumentOptions { _currentFrame?: number; // the current frame of a frame-based collection (e.g., progressive slide) _timecodeToShow?: number; // the time that a document should be displayed (e.g., when an annotation shows up as a video plays) _timecodeToHide?: number; // the time that a document should be hidden + _timelineLabel?: boolean; // whether the document exists on a timeline lastFrame?: number; // the last frame of a frame-based collection (e.g., progressive slide) activeFrame?: number; // the active frame of a document in a frame base collection appearFrame?: number; // the frame in which the document appears |