Files
30-seconds-of-code/test/smoothScroll/smoothScroll.js
2018-08-02 13:49:33 +03:00

6 lines
143 B
JavaScript

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