From f66442062869e453e6e6d9355abe212f319ebad6 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 14 Mar 2025 09:40:11 -0700 Subject: [PATCH] refactor: Update JavaScript to use "Commentary" instead of "Transcript" --- aider/website/_includes/recording.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/website/_includes/recording.js b/aider/website/_includes/recording.js index 3799a2d33..67d975d05 100644 --- a/aider/website/_includes/recording.js +++ b/aider/website/_includes/recording.js @@ -4,8 +4,8 @@ document.addEventListener('DOMContentLoaded', function() { // Parse the transcript section to create markers and convert timestamps to links function parseTranscript() { const markers = []; - // Find the Transcript heading - const transcriptHeading = Array.from(document.querySelectorAll('h1')).find(el => el.textContent.trim() === 'Transcript'); + // Find the Commentary heading + const transcriptHeading = Array.from(document.querySelectorAll('h1')).find(el => el.textContent.trim() === 'Commentary'); if (transcriptHeading) { // Get all list items after the transcript heading