diff options
author | Michael Foiani <sotech117@michaels-mbp-3.devices.brown.edu> | 2022-05-04 13:36:13 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@michaels-mbp-3.devices.brown.edu> | 2022-05-04 13:36:13 -0400 |
commit | a9ff0c90656de71e37edafba68e946807d41403f (patch) | |
tree | 0fb51ede41007ccd31c317aa15b76841e94f38ab /src/client/util | |
parent | a20320fc54f2cddffeabce79b22451a6da551aa5 (diff) |
fix infinite pause/play bug with a stopper, but still very buggy
Diffstat (limited to 'src/client/util')
-rw-r--r-- | src/client/util/RecordingApi.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/util/RecordingApi.ts b/src/client/util/RecordingApi.ts index 8fb503b00..fec579486 100644 --- a/src/client/util/RecordingApi.ts +++ b/src/client/util/RecordingApi.ts @@ -188,7 +188,7 @@ export class RecordingApi { // TODO: set userdoc presentMode to browsing this.timers?.map(timer => clearTimeout(timer)) - this.videoBox = null; + // this.videoBox = null; } private videoBox: VideoBox | null = null; @@ -236,6 +236,7 @@ export class RecordingApi { }, timeDiff)) return arr; }, []) + } // Unfinished code for tracing multiple free form views |