diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-03-13 20:33:51 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-03-13 20:33:51 -0400 |
commit | 41f458fb4f383bfbf8d5b651189c2f4731262ff8 (patch) | |
tree | 9317e63ddb81b38e7bcbd2de8c551b7c71211103 /src/client/views/nodes/VideoBox.tsx | |
parent | b8c0dc61d535caeb2142678dffea2a841776e3a8 (diff) |
added annotations for videos. added custom play controls for videos.
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 9c60d4348..053d9dd56 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -51,7 +51,7 @@ export class VideoBox extends React.Component<FieldViewProps> { <div style={{ width: "100%", height: "Auto" }} > <Measure onResize={this.setScaling}> {({ measureRef }) => - <video controls className="videobox-cont" ref={measureRef}> + <video className="videobox-cont" ref={measureRef}> <source src={path} type="video/mp4" /> Not supported. </video> |