21. März 2026
let savedVolume = localStorage.getItem('hwp_volume'); if (savedVolume === null) savedVolume = 1; document.addEventListener("DOMContentLoaded", function() { const volumeSlider = document.getElementById('audio-volume'); const searchField = document.getElementById('audio-search'); if (volumeSlider) { volumeSlider.value = savedVolume; } function applyVolume() { document.querySelectorAll('audio').forEach(a => a.volume = savedVolume); } if (searchField) { searchField.addEventListener('input', function() { let search = this.value; let data = new FormData(); data.append('action', 'hwp_reload_playlist_live'); data.append('search', search); fetch('/wp-admin/admin-ajax.php', { method: 'POST', body: data }) .then(response => response.text()) .then(html => { const container = document.querySelector('.wp-playlist-tracks'); if (container) { container.innerHTML = html; applyVolume(); } }); }); } if (volumeSlider) { volumeSlider.addEventListener('input', function() { savedVolume = this.value; localStorage.setItem('hwp_volume', savedVolume); applyVolume(); }); } applyVolume(); });