Is horizontal scroll when scrolling element into view implemented? #178
-
I have a big table in my UI and some elements are far off the right side of the viewport. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Does it scroll correctly when you call from the JS console: myAnchorEl.scrollIntoView({
block: 'center',
inline: 'center',
behavior: 'smooth'
}); |
Beta Was this translation helpful? Give feedback.
You can find the scrolling implementation in the following file:
ngx-ui-tour/projects/ngx-ui-tour-core/src/lib/scrolling.service.ts
Line 35 in 26b33ed