From 58c9bd4f10094f05c054dd2188e6f9e13b3b1d16 Mon Sep 17 00:00:00 2001 From: Ashley Date: Sun, 12 Nov 2023 14:58:48 +0000 Subject: [PATCH] add remove fx --- css/app.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/css/app.js b/css/app.js index b8e79789..d810ed79 100644 --- a/css/app.js +++ b/css/app.js @@ -1,5 +1,15 @@ // @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-3.0-or-later +// Get the current URL +const url = new URL(window.location.href); + +// Remove the 'fx' query parameter +url.searchParams.delete('fx'); + +// Replace the current URL without the 'fx' parameter +history.replaceState(null, '', url.toString()); + + // Retrieve volume from local storage or set to max if not available const initialVolume = localStorage.getItem('playerVolume') || 1; const video = document.getElementById('video');