diff options
author | Jonas Kohl | 2024-09-07 14:40:53 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-07 14:40:53 +0200 |
commit | f8a4c5f392138271cf4d0eebf777b38c35235572 (patch) | |
tree | 24fb694db19496b58c2895aaefeda2b949e27384 /includes/desktop/components/video.php | |
parent | fac305e4c91585855ab8fdb0df9fcf97ae06fa3e (diff) |
Allow fullscreen
Diffstat (limited to 'includes/desktop/components/video.php')
-rw-r--r-- | includes/desktop/components/video.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/desktop/components/video.php b/includes/desktop/components/video.php index 3734fe5..2a9c19c 100644 --- a/includes/desktop/components/video.php +++ b/includes/desktop/components/video.php @@ -1,3 +1,3 @@ <?php function c_video(string $id): void { ?> -<iframe src="/video.php?v=<?= htmlentities(urlencode($id)) ?>" frameBorder="0" border="0" width="342" height="291"></iframe> +<iframe src="/video.php?v=<?= htmlentities(urlencode($id)) ?>" allowfullscreen frameBorder="0" border="0" width="342" height="291"></iframe> <?php } ?> |