soiz1 commited on
Commit
4b2320d
·
1 Parent(s): fb3178d

Update index.html

Browse files
Files changed (1) hide show
  1. 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
  });