From 57054bb1bd20d96b5e985a1924afd0526fedbc9f Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 14 Mar 2026 11:07:02 +0000 Subject: [PATCH] Remove auto-scroll on Gantt bar hover Co-Authored-By: Claude Sonnet 4.6 --- templates/conference_list.html | 5 ----- 1 file changed, 5 deletions(-) diff --git a/templates/conference_list.html b/templates/conference_list.html index 11828ba..7ac5ddc 100644 --- a/templates/conference_list.html +++ b/templates/conference_list.html @@ -236,11 +236,6 @@ tr.conf-hl > td { function setHighlight(key, on) { (map.get(key) || []).forEach(el => el.classList.toggle('conf-hl', on)); - // When hovering a Gantt bar, scroll the matching table row into view - if (on) { - const row = (map.get(key) || []).find(el => el.tagName === 'TR'); - if (row) row.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); - } } map.forEach((els, key) => {