diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-13 16:46:58 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-13 16:46:58 -0400 |
commit | 2e75ca29e6e17d637cdad5992ee55e921559922a (patch) | |
tree | 6a471f0a7c20c3fc6695e22cf38388458ec22972 /src/client/views/nodes/AudioBox.tsx | |
parent | 60ceef0a3a8c11d85434a154e542424d34d9562c (diff) | |
parent | 3c6c4e6da942ef4c1e7faebdc165eb4fcaa7bee4 (diff) |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/nodes/AudioBox.tsx')
-rw-r--r-- | src/client/views/nodes/AudioBox.tsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/client/views/nodes/AudioBox.tsx b/src/client/views/nodes/AudioBox.tsx index be12dced3..be6ae630f 100644 --- a/src/client/views/nodes/AudioBox.tsx +++ b/src/client/views/nodes/AudioBox.tsx @@ -16,12 +16,10 @@ export class AudioBox extends React.Component<FieldViewProps> { let path = field.url.href; return ( - <div> - <audio controls className="audiobox-cont"> - <source src={path} type="audio/mpeg" /> - Not supported. + <audio controls className="audiobox-cont" style={{ pointerEvents: "all" }}> + <source src={path} type="audio/mpeg" /> + Not supported. </audio> - </div> ); } }
\ No newline at end of file |