diff options
| author | bob <bcz@cs.brown.edu> | 2019-10-02 18:26:55 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-10-02 18:26:55 -0400 |
| commit | 9427474b473d70974784a1517a1be902fb8d18ee (patch) | |
| tree | f2f2762eb8dbcf771711161fc021fe5c0c2ff654 /src/client/views/nodes/VideoBox.tsx | |
| parent | a19210e7db3e625c0bfe38b4f13b5312cc0c6e53 (diff) | |
many fixes to pdfs, linking, annotations, presentations.
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
| -rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index b7d9a1eab..573197117 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -129,7 +129,7 @@ export class VideoBox extends DocComponent<FieldViewProps, VideoDocument>(VideoD width: 150, height: height / width * 150, title: "--snapshot" + NumCast(this.props.Document.curPage) + " image-" }); this.props.ContainingCollectionView && this.props.ContainingCollectionView.props.addDocument && this.props.ContainingCollectionView.props.addDocument(imageSummary, false); - DocUtils.MakeLink(imageSummary, this.props.Document); + DocUtils.MakeLink({doc:imageSummary}, {doc: this.props.Document}, "snapshot from " + this.props.Document.title, "video frame snapshot"); } }); } |
