DEV Community

Salah Hasanin
Salah Hasanin

Posted on

Angular 2 Scroll to bottom (Chat style)

Angular 2 Scroll to bottom (Chat style)

111

I have a set of single cell components within an ng-for loop.

I have everything in place but I cannot seem to figure out the proper

Currently I have

setTimeout(() => {
  scrollToBottom();
});

But this doesn't work all the time as images asynchronously push the viewport down.

Whats the…

Top comments (0)