mirror of https://github.com/tootsuite/mastodon
Use ScrollToOptions for smooth scrolling if supported (#11207)
parent
4f5b221be2
commit
84ff393842
|
@ -26,5 +26,7 @@ const scroll = (node, key, target) => {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export const scrollRight = (node, position) => scroll(node, 'scrollLeft', position);
|
const isScrollBehaviorSupported = 'scrollBehavior' in document.documentElement.style;
|
||||||
export const scrollTop = (node) => scroll(node, 'scrollTop', 0);
|
|
||||||
|
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);
|
||||||
|
|
Loading…
Reference in New Issue