Compare commits

..

No commits in common. "master" and "testing" have entirely different histories.

View file

@ -205,16 +205,6 @@ if (volNumEl) {
volNumEl.addEventListener('click', function () { this.select(); }); volNumEl.addEventListener('click', function () { this.select(); });
} }
const volSliderEl2 = document.getElementById('volume');
const volWheelTarget = volSliderEl2 || volNumEl;
if (volWheelTarget) {
volWheelTarget.addEventListener('wheel', function (e) {
e.preventDefault();
const current = parseInt(document.getElementById('volume').value, 10);
setVolume(current + (e.deltaY < 0 ? 4 : -4));
}, { passive: false });
}
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// SSE metadata // SSE metadata
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
@ -773,7 +763,7 @@ const MOOD_TAGS = [
{ label: '☕ Lo-fi', tag: 'lofi' }, { label: '☕ Lo-fi', tag: 'lofi' },
{ label: '🎷 Jazz', tag: 'jazz' }, { label: '🎷 Jazz', tag: 'jazz' },
{ label: '🎻 Classical', tag: 'classical' }, { label: '🎻 Classical', tag: 'classical' },
{ label: '🌧 Ambient', tag: 'ambient' }, { label: '🌧 Ambient', tag: 'ambient drone' },
{ label: '🤘 Metal', tag: 'metal' }, { label: '🤘 Metal', tag: 'metal' },
{ label: '🎉 Electronic', tag: 'electronic' }, { label: '🎉 Electronic', tag: 'electronic' },
{ label: '📻 Talk', tag: 'talk' }, { label: '📻 Talk', tag: 'talk' },