diff --git a/index.html b/index.html index fab5a2e..34871cc 100644 --- a/index.html +++ b/index.html @@ -88,6 +88,11 @@ Status + diff --git a/js/app.js b/js/app.js index 678bf7b..ccb931f 100644 --- a/js/app.js +++ b/js/app.js @@ -1034,7 +1034,10 @@ 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}%`);