I am having trouble getting a smooth scroll service to work in angular 2. Are there any services for smooth scrolling, or plain anchor scrolling, that might work until the
example:
function goToElement(elemId){ let element = window.getElementById(elemId); element.scrollIntoView({behavior: "smooth"}); }