Skip to content

Commit 558e78e

Browse files
committed
Corrects video props to camel case and removes deprecated prop
1 parent 04146bd commit 558e78e

File tree

7 files changed

+12
-17
lines changed

7 files changed

+12
-17
lines changed

docs/guides/example-projects/realtime-fal-ai.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,9 @@ This video walks through the process of creating this task in a Next.js project.
3636
height="100%"
3737
src="https://www.youtube.com/embed/BWZqYfUaigg?si=XpqVUEIf1j4bsYZ4"
3838
title="Trigger.dev walkthrough"
39-
frameborder="0"
4039
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
41-
referrerpolicy="strict-origin-when-cross-origin"
42-
allowfullscreen
40+
referrerPolicy="strict-origin-when-cross-origin"
41+
allowFullScreen
4342
/>
4443
</div>
4544

docs/guides/examples/fal-ai-image-to-cartoon.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: "This example task generates an image from a URL using Fal.ai and u
99
This video walks through the process of creating this task in a Next.js project.
1010

1111
<div className="w-full h-full aspect-video mb-3">
12-
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/AyRT4X8dHK0?si=ugA172V_3TMjik9h" title="Trigger.dev walkthrough" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen/>
12+
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/AyRT4X8dHK0?si=ugA172V_3TMjik9h" title="Trigger.dev walkthrough" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerPolicy="strict-origin-when-cross-origin" allowFullScreen/>
1313
</div>
1414

1515
## Prerequisites

docs/guides/examples/fal-ai-realtime.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ This video walks through the process of creating this task in a Next.js project.
2525
height="100%"
2626
src="https://www.youtube.com/embed/BWZqYfUaigg?si=XpqVUEIf1j4bsYZ4"
2727
title="Trigger.dev walkthrough"
28-
frameborder="0"
2928
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
30-
referrerpolicy="strict-origin-when-cross-origin"
31-
allowfullscreen
29+
referrerPolicy="strict-origin-when-cross-origin"
30+
allowFullScreen
3231
/>
3332
</div>
3433

docs/guides/examples/scrape-hacker-news.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ import ScrapingWarning from "/snippets/web-scraping-warning.mdx";
1313
height="100%"
1414
src="https://www.youtube.com/embed/6azvzrZITKY?si=muKtsBiS9TJGGKWg"
1515
title="YouTube video player"
16-
frameborder="0"
1716
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
18-
referrerpolicy="strict-origin-when-cross-origin"
19-
allowfullscreen
17+
referrerPolicy="strict-origin-when-cross-origin"
18+
allowFullScreen
2019
/>
2120
</div>
2221

docs/introduction.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ We're [open source](https://github.com/triggerdotdev/trigger.dev) and you can ch
2424
height="100%"
2525
src="https://www.youtube.com/embed/YH_4c0K7fGM?si=5JzZmZseuqI5aciM"
2626
title="Trigger.dev walkthrough"
27-
frameborder="0"
2827
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
29-
referrerpolicy="strict-origin-when-cross-origin"
30-
allowfullscreen
28+
referrerPolicy="strict-origin-when-cross-origin"
29+
allowFullScreen
3130
/>
3231
</div>
3332

docs/realtime/overview.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ The Realtime API is built on top of [Electric SQL](https://electric-sql.com/), a
1818
height="100%"
1919
src="https://www.youtube.com/embed/RhJAbSGkS88?si=4Z72SfygeklNI3As"
2020
title="YouTube video player"
21-
frameborder="0"
2221
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
23-
referrerpolicy="strict-origin-when-cross-origin"
24-
allowfullscreen
22+
referrerPolicy="strict-origin-when-cross-origin"
23+
allowFullScreen
2524
></iframe>
2625
</div>
2726

docs/video-walkthrough.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Go from zero to a working task in your Next.js app in 10 minutes."
44
---
55

66
<div className="w-full h-full aspect-video">
7-
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/YH_4c0K7fGM?si=5JzZmZseuqI5aciM" title="Trigger.dev walkthrough" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen/>
7+
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/YH_4c0K7fGM?si=5JzZmZseuqI5aciM" title="Trigger.dev walkthrough" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerPolicy="strict-origin-when-cross-origin" allowFullScreen/>
88
</div>
99

1010
### In this video we cover the following topics:

0 commit comments

Comments
 (0)