summaryrefslogtreecommitdiff
path: root/web/js/app.js
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-05 11:14:40 +0300
committerPaul Buetow <paul@buetow.org>2026-05-05 11:14:40 +0300
commita7a346ef6018ec675c2256380f3f7758a24fc5ed (patch)
tree969be18ab6f6490bf6fd575abd4cd096ae3080f0 /web/js/app.js
parenta78d332080c77a5dd0d8e20cd59ec4561c2b0dda (diff)
Add frontend podcast manager UI and episode renderer
Diffstat (limited to 'web/js/app.js')
-rw-r--r--web/js/app.js2
1 files changed, 2 insertions, 0 deletions
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();