Fix cancellation of scroll to the right ()

pull/4991/head
abcang 2017-09-17 18:59:23 +09:00 committed by Eugen Rochko
parent 8811778b55
commit 44245926f1
1 changed files with 1 additions and 1 deletions
app/javascript/mastodon/features/ui/components

View File

@ -78,7 +78,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
handleChildrenContentChange() {
if (!this.props.singleColumn) {
scrollRight(this.node, this.node.scrollWidth - window.innerWidth);
this._interruptScrollAnimation = scrollRight(this.node, this.node.scrollWidth - window.innerWidth);
}
}