Clean up some dead code

lolsob-rspec
Thibaut Girka 2020-04-10 10:42:31 +02:00 committed by ThibG
parent 79e5f368ed
commit 6d3e240aa9
2 changed files with 0 additions and 16 deletions

View File

@ -54,14 +54,6 @@ class Followers extends ImmutablePureComponent {
this.column.scrollTop();
}
handleScroll = (e) => {
const { scrollTop, scrollHeight, clientHeight } = e.target;
if (scrollTop === scrollHeight - clientHeight && this.props.hasMore) {
this.props.dispatch(expandFollowers(this.props.params.accountId));
}
}
handleLoadMore = debounce(() => {
this.props.dispatch(expandFollowers(this.props.params.accountId));
}, 300, { leading: true });

View File

@ -54,14 +54,6 @@ class Following extends ImmutablePureComponent {
this.column.scrollTop();
}
handleScroll = (e) => {
const { scrollTop, scrollHeight, clientHeight } = e.target;
if (scrollTop === scrollHeight - clientHeight && this.props.hasMore) {
this.props.dispatch(expandFollowing(this.props.params.accountId));
}
}
handleLoadMore = debounce(() => {
this.props.dispatch(expandFollowing(this.props.params.accountId));
}, 300, { leading: true });