From 93ac6b3289b9e85dd681190800c719fc4d725ea9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Motto Date: Fri, 30 Apr 2021 12:16:55 +0200 Subject: [PATCH] Add allowfullscreen param to web arte.tv service. Default value is allowed. --- tarteaucitron.services.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tarteaucitron.services.js b/tarteaucitron.services.js index c42137f..94c19b8 100644 --- a/tarteaucitron.services.js +++ b/tarteaucitron.services.js @@ -939,13 +939,14 @@ tarteaucitron.services.artetv = { video_json = x.getAttribute("json"), video_width = x.getAttribute("width"), video_height = x.getAttribute("height"), - video_frame; + video_frame, + video_allowfullscreen = x.getAttribute("allowfullscreen"); if (video_json === undefined) { return ""; } - video_frame = ''; + video_frame = ''; return video_frame; }); },