From 477114105f573360e0f760bba6315a28cad7bd7e Mon Sep 17 00:00:00 2001 From: SOOROS <74892930+sooros5132@users.noreply.github.com> Date: Thu, 30 Nov 2023 04:42:17 +0900 Subject: [PATCH] Add semicolon The value of allowPolicy is used directly in the attribute. So I added a semicolon to the example code. Without the semicolon, fullscreen didn't work. --- docs/widgets/services/iframe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/services/iframe.md b/docs/widgets/services/iframe.md index 6cd969e4..e60f43f0 100644 --- a/docs/widgets/services/iframe.md +++ b/docs/widgets/services/iframe.md @@ -27,7 +27,7 @@ widget: src: http://example.com classes: h-60 sm:h-60 md:h-60 lg:h-60 xl:h-60 2xl:h-72 # optional, use tailwind height classes, see https://tailwindcss.com/docs/height referrerPolicy: same-origin # optional, no default - allowPolicy: autoplay fullscreen gamepad # optional, no default + allowPolicy: autoplay; fullscreen; gamepad # optional, no default allowFullscreen: false # optional, default: true loadingStrategy: eager # optional, default: eager allowScrolling: no # optional, default: yes