Files
30-seconds-of-code/test/smoothScroll/smoothScroll.js
2018-06-18 19:07:48 +03:00

5 lines
134 B
JavaScript

const smoothScroll = element =>
document.querySelector(element).scrollIntoView({
behavior: 'smooth'
});
module.exports = smoothScroll;