diff --git a/data/changelog.xml b/data/changelog.xml index a03c493..ce882c7 100644 --- a/data/changelog.xml +++ b/data/changelog.xml @@ -3,7 +3,7 @@ - 2.5.1 + 2.5.1 (a) Migliorata l'usabilità e UX dell'applicazione, inserendo ad ogni pagina il pulsante "Back" (già presente in: player radio, tv e podcast) Correzione e bugfix di problematiche varie. diff --git a/js/app.js b/js/app.js index 34c4fc9..5e7febf 100644 --- a/js/app.js +++ b/js/app.js @@ -998,6 +998,7 @@ document.addEventListener('DOMContentLoaded', function () { const detail = document.getElementById('podcast-detail'); const iframe = document.getElementById('podcast-iframe'); const homeNav = document.getElementById('home-navigation'); + const podNav = document.getElementById('podcast-header'); const scrollContainer = document.querySelector('main'); if (!list || !detail || !iframe) { @@ -1009,6 +1010,7 @@ document.addEventListener('DOMContentLoaded', function () { iframe.src = url; // Cambio vista + podNav.style.display = 'none'; list.style.display = 'none'; detail.style.display = 'block'; if (homeNav) homeNav.style.display = 'none'; @@ -1026,6 +1028,7 @@ document.addEventListener('DOMContentLoaded', function () { const list = document.getElementById('podcast-list'); const detail = document.getElementById('podcast-detail'); const iframe = document.getElementById('podcast-iframe'); + const podNav = document.getElementById('podcast-header'); const homeNav = document.getElementById('home-navigation'); if (!list || !detail || !iframe) return; @@ -1034,6 +1037,7 @@ document.addEventListener('DOMContentLoaded', function () { iframe.src = 'about:blank'; // Cambio vista + podNav.style.display = 'block'; list.style.display = 'block'; detail.style.display = 'none'; if (homeNav) homeNav.style.display = 'block'; diff --git a/pages/page/podcast.php b/pages/page/podcast.php index 3e4a348..3557d8f 100644 --- a/pages/page/podcast.php +++ b/pages/page/podcast.php @@ -144,7 +144,7 @@ function formatDateItalian($dateString) { } -