Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
@@ -778,7 +778,7 @@
|
|
778 |
volumeValues[index].textContent = value.toFixed(2);
|
779 |
|
780 |
if (audioElements[this.dataset.audio]) {
|
781 |
-
const globalVolume = parseFloat(globalVolumeSlider.value);
|
782 |
audioElements[this.dataset.audio].volume = value * globalVolume;
|
783 |
}
|
784 |
});
|
|
|
778 |
volumeValues[index].textContent = value.toFixed(2);
|
779 |
|
780 |
if (audioElements[this.dataset.audio]) {
|
781 |
+
const globalVolume = parseFloat(globalVolumeSlider.value / 10);
|
782 |
audioElements[this.dataset.audio].volume = value * globalVolume;
|
783 |
}
|
784 |
});
|