Changeset 359b9ae in Klonkt
- Timestamp:
- 06/20/2026 02:09:51 AM (3 months ago)
- Branches:
- main
- Children:
- ddf549f
- Parents:
- 85d5972
- Location:
- src
- Files:
-
- 4 edited
-
assets/css/style.css (modified) (1 diff)
-
routes/posts.js (modified) (1 diff)
-
services/AudioEmbedService.js (modified) (2 diffs)
-
views/shell.ejs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/assets/css/style.css
r85d5972 r359b9ae 2821 2821 } 2822 2822 /* Korte highlight wanneer je via de mini-speler naar deze track springt. */ 2823 .post-audio-track.pat-flash { 2823 .post-audio-track.pat-flash, 2824 .post-album-track-compact.pat-flash { 2824 2825 animation: patFlash 1.6s ease-out; 2826 border-radius: 8px; 2825 2827 } 2826 2828 @keyframes patFlash { -
src/routes/posts.js
r85d5972 r359b9ae 562 562 if (!byAlbum.has(r.album)) byAlbum.set(r.album, []); 563 563 byAlbum.get(r.album).push({ 564 id: r.id, 564 565 url: audioUrl(r.filename), 565 566 title: r.title || 'Untitled', -
src/services/AudioEmbedService.js
r85d5972 r359b9ae 298 298 const tArtist = this.escape(t.artist || ''); 299 299 const tUrl = this.escape(t.url); 300 return ` <li class="post-audio-track" data-pcms-track-url="${tUrl}" data-pcms-album-id="${albumDomId}">300 return ` <li class="post-audio-track"${t.id ? ` id="track-${t.id}" data-pcms-track-id="${t.id}"` : ''} data-pcms-track-url="${tUrl}" data-pcms-album-id="${albumDomId}"> 301 301 <button type="button" class="pat-play" aria-label="Play ${tTitle}"> 302 302 <svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M8 4l12 8-12 8z"/></svg> … … 414 414 415 415 const trackBase = String(t.url).split('?')[0]; 416 return ` <li class="post-album-track-compact" >416 return ` <li class="post-album-track-compact"${t.id ? ` id="track-${t.id}" data-pcms-track-id="${t.id}"` : ''}> 417 417 <button type="button" class="pat-row" 418 418 data-pcms-track-url="${tUrl}" -
src/views/shell.ejs
r85d5972 r359b9ae 163 163 164 164 <!-- v9 stylesheet (full palette system) --> 165 <link rel="stylesheet" href="/assets/css/style.css?v=1 6">165 <link rel="stylesheet" href="/assets/css/style.css?v=17"> 166 166 167 167 <!-- Audio player styles: loaded on every page so the mini-player works
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)