Files
30-seconds-of-code/test/smoothScroll/smoothScroll.js
2018-03-03 20:31:16 +00:00

5 lines
134 B
JavaScript

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