dont display cc button via videojs settings

This commit is contained in:
Anthony 2021-06-22 21:24:15 +02:00 committed by Thomas Zarebczan
parent d921bf3340
commit ab13b23cef

View file

@ -200,6 +200,11 @@ export default React.memo<Props>(function VideoJs(props: Props) {
eventTracking: true,
overlay: OVERLAY.OVERLAY_DATA,
},
// fixes problem of errant CC button showing up on iOS
// TODO: find the source of why the button recently began to show up on iOS
controlBar: {
subsCapsButton: false,
},
};
const tapToUnmuteRef = useRef();