From dae712ac1cbe9751c8da0e826b8111351cf9519d Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Sat, 13 Dec 2025 05:08:37 +0100 Subject: The wav lib is loading the audio data!! Tested with 24-bit audio Also it handles wave_format_extensible now. --- src/parts/end.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/parts/end.html') diff --git a/src/parts/end.html b/src/parts/end.html index 204188c..fb5a632 100644 --- a/src/parts/end.html +++ b/src/parts/end.html @@ -33,13 +33,16 @@ prevColumnSorted = th; } - // Event listeners and initial sort + // Event listener document.querySelectorAll('th').forEach(th => th.addEventListener('click', () => { document.querySelectorAll('.current-sort').forEach(el => el.classList.remove('current-sort')); th.classList.add('current-sort'); doSort(th); })); - + + // Sort by the default column on page load + doSort(prevColumnSorted); + // Column and row highlighting on hover const table = document.querySelector('table'); const allCells = table.querySelectorAll('td, th'); -- cgit v1.2.1