Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/TabList.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,15 @@ export default class TabListComponent extends React.Component<Props, State> {

// $FlowFixMe
scrollToIndex(index: number, rectSide: 'left' | 'right') {
// Scroll to the last element if the index is out of bounds
if(index > this.tabRefs.length - 1) {
index = this.tabRefs.length - 1;
}
// Cancel scrolling if there are no tabs
else if(this.tabRefs.length <= 0) {
return;
}

const tabOffset = this.getTabNode(this.tabRefs[index]).getBoundingClientRect();
const containerOffset = this.listContainer.getBoundingClientRect();
// Cancel scrolling if the tab is visible
Expand Down