From a7a346ef6018ec675c2256380f3f7758a24fc5ed Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 5 May 2026 11:14:40 +0300 Subject: Add frontend podcast manager UI and episode renderer --- web/js/app.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'web/js/app.js') diff --git a/web/js/app.js b/web/js/app.js index 4029825..fb6e787 100644 --- a/web/js/app.js +++ b/web/js/app.js @@ -7,6 +7,7 @@ import { initShuffle, toggle as toggleShuffle, isOn as isShuffle } from './shuff import { initThemes } from './themes.js'; import { initNotes, open as openNotes } from './notes.js'; import { initAdmin } from './admin.js'; +import { initPodcasts } from './podcasts.js'; import { state, setMedia } from './state.js'; import { initPWA } from './pwa.js'; import { initLightbox, open as openLightbox, close as closeLightbox, isOpen as isLightboxOpen, next as lightboxNext, prev as lightboxPrev, zoomIn as lightboxZoomIn, zoomOut as lightboxZoomOut, toggleSlideshow as lightboxToggleSlideshow } from './lightbox.js'; @@ -174,6 +175,7 @@ async function initApp() { }); initNotes(() => toast('Note saved')); initAdmin(); + initPodcasts(); initPWA(); initUpload(); initHelp(); -- cgit v1.2.3