Silviu Ifrim

Results 8 comments of Silviu Ifrim

Is there any solution to this? For example, would it be an option to skip the corrections?

> Can you create an minimal reproducible example? Ok, working on it.

> Yes, for example passing your own elementScroll https://github.com/TanStack/virtual/blob/main/packages/virtual-core/src/index.ts#L207-L221 that will not add adjustments Unfortunately, it still doesn't solve the problem. Will try to reproduce it in a sandbox.

Just tried the following on the [video-only example](https://github.com/collab-project/videojs-record/blob/master/examples/video-only.html): ``` // apply some workarounds for opera browser applyVideoWorkaround(); const recordToggle = videojs.getComponent('RecordToggle'); console.log('RecordToggle:', recordToggle); ``` In this case it is working...

Update: I have tried with those versions, the problem is still persisting.

I have got around the initial error with the following conditional: ```ts const RecordToggle = videojs.getComponent( 'RecordToggle', ) as unknown as typeof videojs.Button const ComponentToExtend = RecordToggle ? RecordToggle :...

I'm trying now, hopefully I will reproduce it.

I haven't been able to reproduce it with the official example. We're thinking of updating it directly to 8+.