Removes scrollIntoView script behavior for tabs

This commit is contained in:
Mouse Reeve 2022-02-25 12:39:44 -08:00
parent ac36aa9327
commit 5d4efd457a

View file

@ -56,10 +56,6 @@ class TabGroup {
tab.addEventListener('keydown', this.keydownEventListener.bind(this));
tab.addEventListener('keyup', this.keyupEventListener.bind(this));
if (isSelected) {
tab.scrollIntoView();
}
tab.index = count++;
}
}