Scroll breadcrumbs to the left when they change
Fixes https://github.com/vector-im/riot-web/issues/9355
This commit is contained in:
parent
37afa9fc0e
commit
04b521c48b
2 changed files with 11 additions and 0 deletions
|
@ -40,6 +40,13 @@ export default class IndicatorScrollbar extends React.Component {
|
|||
};
|
||||
}
|
||||
|
||||
moveToOrigin() {
|
||||
if (!this._scrollElement) return;
|
||||
|
||||
this._scrollElement.scrollLeft = 0;
|
||||
this._scrollElement.scrollTop = 0;
|
||||
}
|
||||
|
||||
_collectScroller(scroller) {
|
||||
if (scroller && !this._scrollElement) {
|
||||
this._scrollElement = scroller;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue