From be4991ed1399c8986ec8132528f6237ab29d5d7d Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 17 Feb 2026 11:41:48 +0100 Subject: [PATCH] wait #8010 @1.5 --- js/libs/fluidbook/fluidbook.video.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/libs/fluidbook/fluidbook.video.js b/js/libs/fluidbook/fluidbook.video.js index 1eab758f..6ee9d445 100644 --- a/js/libs/fluidbook/fluidbook.video.js +++ b/js/libs/fluidbook/fluidbook.video.js @@ -138,7 +138,6 @@ FluidbookVideo.prototype = { loop = false; } - var hidelinksonplay = $(e).data('hidelinksonplay') == undefined || $(e).data('hidelinksonplay') === '' ? [] : $(e).data('hidelinksonplay').split(','); // console.log('Initialising video ID: ' + id, statsType, statsName); @@ -425,7 +424,6 @@ FluidbookVideo.prototype = { if (settings.paused) { player.pause(); player.one('play', function () { - console.log(':!!!'); sendPlayEvent(); }); } else { @@ -660,7 +658,7 @@ FluidbookVideo.prototype = { var id = player.id(); // Save the current player info if it has started - if (player.hasStarted()) { + if (player.hasStarted() && player.controls()) { fluidbook.video.players[id] = { currentTime: player.currentTime(), volume: player.volume(), @@ -692,7 +690,6 @@ FluidbookVideo.prototype = { }, isVideoFullscreen: function () { - return this.fullscreenActive; // var fullscreenPlayerFound = false; -- 2.39.5