const playerOpts = { url: <video-url>, responsive: true, controls: false, }; const videoPlayer = new VimeoPlayer(<div element reference>, playerOpts);
I've implemented vimeo player on my angular web app and it's working fine.
But MacBook Pro has a Touch Bar and when I play videos using Safari browser, player controls are visible on Touch Bar.
Since it's controls: false , is there any way to hide that?
const playerOpts = { url: <video-url>, responsive: true, controls: false, };
const videoPlayer = new VimeoPlayer(<div element reference>, playerOpts);
I've implemented vimeo player on my angular web app and it's working fine. But MacBook Pro has a Touch Bar and when I play videos using Safari browser, player controls are visible on Touch Bar. Since it's
controls: false
, is there any way to hide that?