From 3eb5a250d85e0f6e1cced7b808f0fe2e45101b57 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Motto Date: Thu, 29 Apr 2021 19:22:46 +0200 Subject: [PATCH] Add allowfullscreen param to matterport service. Default value is allowed. --- tarteaucitron.services.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tarteaucitron.services.js b/tarteaucitron.services.js index 38d2ad0..52f55a7 100644 --- a/tarteaucitron.services.js +++ b/tarteaucitron.services.js @@ -3816,6 +3816,7 @@ tarteaucitron.services.matterport = { matterport_height = x.getAttribute("height"), frame_height = 'height=', matterport_parameters = x.getAttribute("parameters"), + matterport_allowfullscreen = x.getAttribute('allowfullscreen'), matterport_frame; if (matterport_id === undefined) { @@ -3835,7 +3836,7 @@ tarteaucitron.services.matterport = { return ""; } - matterport_frame = ''; + matterport_frame = ''; return matterport_frame; }); },