~cytrogen/masto-fe

84ff3938426da348e31651dfad376d83a9784343 — ThibG 6 years ago 4f5b221
Use ScrollToOptions for smooth scrolling if supported (#11207)

1 files changed, 4 insertions(+), 2 deletions(-)

M app/javascript/mastodon/scroll.js
M app/javascript/mastodon/scroll.js => app/javascript/mastodon/scroll.js +4 -2
@@ 26,5 26,7 @@ const scroll = (node, key, target) => {
  };
};

export const scrollRight = (node, position) => scroll(node, 'scrollLeft', position);
export const scrollTop = (node) => scroll(node, 'scrollTop', 0);
const isScrollBehaviorSupported = 'scrollBehavior' in document.documentElement.style;

export const scrollRight = (node, position) => isScrollBehaviorSupported ? node.scrollTo({ left: position, behavior: 'smooth' }) : scroll(node, 'scrollLeft', position);
export const scrollTop = (node) => isScrollBehaviorSupported ? node.scrollTo({ top: 0, behavior: 'smooth' }) : scroll(node, 'scrollTop', 0);