Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -1195,7 +1195,7 @@
|
|
1195 |
audioFiles.forEach(file => {
|
1196 |
if (audioElements[file]) {
|
1197 |
const volumeSlider = document.querySelector(`.audio-slider[data-audio="${file}"]`);
|
1198 |
-
const volume = parseFloat(volumeSlider.value) * (value/10
|
1199 |
audioElements[file].volume = volume;
|
1200 |
}
|
1201 |
});
|
@@ -1273,7 +1273,7 @@
|
|
1273 |
|
1274 |
sliders.forEach(slider => {
|
1275 |
if (slider) {
|
1276 |
-
slider.style.backgroundImage = 'linear-gradient(#
|
1277 |
slider.style.backgroundRepeat = 'no-repeat';
|
1278 |
}
|
1279 |
});
|
|
|
1195 |
audioFiles.forEach(file => {
|
1196 |
if (audioElements[file]) {
|
1197 |
const volumeSlider = document.querySelector(`.audio-slider[data-audio="${file}"]`);
|
1198 |
+
const volume = parseFloat(volumeSlider.value) * (value)/10;
|
1199 |
audioElements[file].volume = volume;
|
1200 |
}
|
1201 |
});
|
|
|
1273 |
|
1274 |
sliders.forEach(slider => {
|
1275 |
if (slider) {
|
1276 |
+
slider.style.backgroundImage = 'linear-gradient(#2d3d57, #2d3d57)';
|
1277 |
slider.style.backgroundRepeat = 'no-repeat';
|
1278 |
}
|
1279 |
});
|