From e65df0e61620b7dbb268989dcfcc023d32f3d16e Mon Sep 17 00:00:00 2001 From: Michael Verdi Date: Thu, 31 Jul 2025 14:17:52 -0500 Subject: [PATCH] Fix poster display issue on VR exit - Added video.load() to resetToOriginalState() function - Forces video element to reload and show poster image instead of first frame - Ensures proper reset to original state after exiting VR --- vr180-player.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vr180-player.js b/vr180-player.js index c3a205e..329fb27 100644 --- a/vr180-player.js +++ b/vr180-player.js @@ -879,6 +879,9 @@ function resetToOriginalState() { video.pause(); video.currentTime = 0; video.controls = false; // Disable native controls + + // Force video back to poster state by reloading + video.load(); } // Show the play button in center position