From b9f946ab8f860a907f000bb5f1f7daf8bee04b48 Mon Sep 17 00:00:00 2001 From: Andrew Sliwinski <andrewsliwinski@acm.org> Date: Thu, 4 Oct 2018 17:28:18 -0400 Subject: [PATCH] Resolve lint errors and fix fullscreen playback --- src/components/cards/cards.jsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/components/cards/cards.jsx b/src/components/cards/cards.jsx index 110f0686e..ac079aea7 100644 --- a/src/components/cards/cards.jsx +++ b/src/components/cards/cards.jsx @@ -63,17 +63,13 @@ const VideoStep = ({video, dragging}) => ( <div className={styles.videoCover} /> ) : null} <iframe - allowfullscreen - allowtransparency="true" - frameborder="0" + allowFullScreen + allowTransparency="true" + frameBorder="0" height="338" - mozallowfullscreen - msallowfullscreen - oallowfullscreen scrolling="no" src={`https://fast.wistia.net/embed/iframe/${video}?seo=false&videoFoam=true`} title="Video Player" - webkitallowfullscreen width="600" /> <script -- GitLab