diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-07-13 15:58:55 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-07-13 15:58:55 -0400 |
| commit | dafd50255e9a748d6d1032561d208b633e97f424 (patch) | |
| tree | cf4ed4692ab51d898864577c8fc41abbf57ec0b0 /src/client/views/nodes/AudioBox.tsx | |
| parent | c74de5f402b7582e89aa7401e34bfc1c86a6dde6 (diff) | |
tweaked audio box rendering. played with recording audio.
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 |
