From 866d2e452781caf5ad56d26ff1f8738e4c894f81 Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Wed, 22 Oct 2025 14:47:22 +0300 Subject: [PATCH] c --- index.html | 5 +++++ js/app.js | 3 +++ 2 files changed, 8 insertions(+) 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}%`);