From 0c612f3d2c9940d2659bf030a6f4bc1fbdb6dc9d Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Wed, 22 Oct 2025 14:49:50 +0300 Subject: [PATCH] Revert "c" This reverts commit 866d2e452781caf5ad56d26ff1f8738e4c894f81. --- index.html | 5 ----- js/app.js | 3 --- 2 files changed, 8 deletions(-) diff --git a/index.html b/index.html index 34871cc..fab5a2e 100644 --- a/index.html +++ b/index.html @@ -88,11 +88,6 @@ Status - diff --git a/js/app.js b/js/app.js index ccb931f..678bf7b 100644 --- a/js/app.js +++ b/js/app.js @@ -1034,10 +1034,7 @@ document.addEventListener('DOMContentLoaded', async () => { const updateVolumeUI = () => { const { volume, muted } = audioPlayer; volumeBtn.innerHTML = (muted || volume === 0) ? SVG_MUTE : SVG_VOLUME; -<<<<<<< Updated upstream -======= ->>>>>>> Stashed changes const effectiveVolume = muted ? 0 : volume * 100; volumeFill.style.setProperty('--volume-level', `${effectiveVolume}%`);