Browse Source

add scrollTop to ui/components/column (#4563)

pull/4/head
Ondřej Hruška 6 years ago
committed by Eugen Rochko
parent
commit
820099813f
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      app/javascript/mastodon/features/ui/components/column.js

+ 11
- 0
app/javascript/mastodon/features/ui/components/column.js View File

@ -25,6 +25,17 @@ export default class Column extends React.PureComponent {
this._interruptScrollAnimation = scrollTop(scrollable);
}
scrollTop () {
const scrollable = this.node.querySelector('.scrollable');
if (!scrollable) {
return;
}
this._interruptScrollAnimation = scrollTop(scrollable);
}
handleScroll = debounce(() => {
if (typeof this._interruptScrollAnimation !== 'undefined') {
this._interruptScrollAnimation();

Loading…
Cancel
Save