mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
fix(frontend): Fix ratio of youtube frame
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
94c659558e
commit
9fb83409cc
2 changed files with 2 additions and 4 deletions
|
@ -5,11 +5,10 @@ exports[`YoutubeFrame renders a click shield 1`] = `
|
|||
<span>
|
||||
This is a click shield for
|
||||
<span
|
||||
class="embed-responsive embed-responsive-16by9"
|
||||
class="ratio ratio-16x9 d-inline-block"
|
||||
>
|
||||
<iframe
|
||||
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
|
||||
class="embed-responsive-item"
|
||||
src="https://www.youtube-nocookie.com/embed/validYoutubeId?autoplay=1"
|
||||
title="youtube video of validYoutubeId"
|
||||
/>
|
||||
|
|
|
@ -20,9 +20,8 @@ export const YouTubeFrame: React.FC<IdProps> = ({ id }) => {
|
|||
fallbackPreviewImageUrl={`https://i.ytimg.com/vi/${id}/maxresdefault.jpg`}
|
||||
fallbackBackgroundColor={'#ff0000'}
|
||||
data-cypress-id={'click-shield-youtube'}>
|
||||
<span className={'embed-responsive embed-responsive-16by9'}>
|
||||
<span className={'ratio ratio-16x9 d-inline-block'}>
|
||||
<iframe
|
||||
className='embed-responsive-item'
|
||||
title={`youtube video of ${id}`}
|
||||
src={`https://www.youtube-nocookie.com/embed/${id}?autoplay=1`}
|
||||
allow='accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture'
|
||||
|
|
Loading…
Reference in a new issue