aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/AudioBox.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-10-24 14:01:35 -0400
committerbob <bcz@cs.brown.edu>2019-10-24 14:01:35 -0400
commitcf9fff0cf86e120cd4d26169ce8455bd8b438b24 (patch)
tree63d60d6477e60d6585d5483ba0328b4746c6b780 /src/client/views/nodes/AudioBox.tsx
parentc97b98c165e318da787361b8fc11382b0b98afa4 (diff)
minor fixes including fix to focus() to restore animation panning
Diffstat (limited to 'src/client/views/nodes/AudioBox.tsx')
-rw-r--r--src/client/views/nodes/AudioBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/AudioBox.tsx b/src/client/views/nodes/AudioBox.tsx
index bd1caaf1b..268255b46 100644
--- a/src/client/views/nodes/AudioBox.tsx
+++ b/src/client/views/nodes/AudioBox.tsx
@@ -95,7 +95,7 @@ export class AudioBox extends DocExtendableComponent<FieldViewProps, AudioDocume
pause = action(() => {
this._ele!.pause();
this._playing = false;
- })
+ });
playFrom = (seekTimeInSeconds: number) => {
if (this._ele) {