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) => {