Podcast player embedded obv links in tekst

This commit is contained in:
NH Gooi
2024-06-22 22:47:20 +02:00
parent cc58f5931c
commit e2f114a7a8
6 changed files with 29 additions and 2 deletions

View File

@@ -1649,4 +1649,10 @@ a, a:hover, a:active {
}
}
.podcast-player .content {
border: solid 1px #333;
border-radius: 5px;
padding: 0.4rem;
}
/*# sourceMappingURL=style.css.map */

8
public/js/main.js vendored
View File

@@ -1 +1,7 @@
$(function() {
$('.podcast-player').each(function() {
var id = $(this).data('id');
var auth = $(this).data('auth');
$(this).load('/luister/fragment/inline/' + id + '?auth=' + auth);
});
});