Angular2 @Component which automatically scrolls to the end of a div on the addition of new elements inside the div.
importScrollGluefrom'angular2-scroll-glue'
@Component({selector: 'my-app',providers: [],template: template,directives: [ScrollGlue]})<divscroll-glue><ul><li*ngFor="#item of listItems">
{{ item }}
</li></ul></div>