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}%`);