Update main.js

This commit is contained in:
simonpipe 2025-12-19 15:36:01 +01:00
parent 7c2fbce5df
commit 434717d7a2

View file

@ -75,7 +75,7 @@ document.addEventListener('DOMContentLoaded', function () {
function stopPlayback() { function stopPlayback() {
if (currentSound) { currentSound.stop(); currentSound = null; } if (currentSound) { currentSound.stop(); currentSound = null; }
stopButton.classList.add('hidden'); stopButton.classList.add('hidden');
currentStationName.innerHTML = 'W&auml;hle einen Sender aus'; currentStationName.innerHTML = '<i class="fa-solid fa-radio" style="opacity:0.5"></i> Wähle einen Sender aus';
window.UI.updateDocumentTitle(''); window.UI.updateDocumentTitle('');
if (window.MetaHandler) window.MetaHandler.stop(); if (window.MetaHandler) window.MetaHandler.stop();
} }