From 212ba396f104d0f77201ee765668ef38af0b24c5 Mon Sep 17 00:00:00 2001 From: John Puddephatt Date: Wed, 15 Feb 2023 10:06:42 +0000 Subject: [PATCH] Make Vimeo embed consistent with other embeds by adding allowfullscreen attribute Currently Vimeo embeds do not have the allowfullscreen attribute and can't be made fullscreen. This attribute is already present on YouTube and other embeds, so this is just bringing consistency. --- src/services.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services.js b/src/services.js index 5056497f..94b6016a 100644 --- a/src/services.js +++ b/src/services.js @@ -3,7 +3,7 @@ export default { vimeo: { regex: /(?:http[s]?:\/\/)?(?:www.)?(?:player.)?vimeo\.co(?:.+\/([^\/]\d+)(?:#t=[\d]+)?s?$)/, embedUrl: 'https://player.vimeo.com/video/<%= remote_id %>?title=0&byline=0', - html: '', + html: '', height: 320, width: 580, },