ng2-infinitescroll
Version:
inifnite scroll for angular2
50 lines (46 loc) • 1.09 kB
text/typescript
import {Component} from '@angular/core';
import {InfiniteScroll} from './directives/angular2-infinitescroll';
export class AppComponent {
public testData:Object[] = [
{
text:'test1'
},
{
text: 'test2',
},
{
text: 'test3',
},
{
text: 'test4',
},
{
text: 'test5',
},
{
text: 'test6',
},
{
text: 'test7',
},
{
text: 'test8',
},
];
nextPage() {
console.log('Reached Bottom!!');
}
}