logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 44245926f105e653cfe4fd3397b796df345023b5
parent: 8811778b55023795deaa5d63a7bcfc94f7f50162
Author: abcang <abcang1015@gmail.com>
Date:   Sun, 17 Sep 2017 18:59:23 +0900

Fix cancellation of scroll to the right (#4978)


Diffstat:

Mapp/javascript/mastodon/features/ui/components/columns_area.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/javascript/mastodon/features/ui/components/columns_area.js b/app/javascript/mastodon/features/ui/components/columns_area.js @@ -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); } }