ng-easy-infinite-scroll
v1.0.0
Published
infinite scroll
Downloads
275
Maintainers
Readme
ng-easy-infinite-scroll - AngularJs Demo
Developers
- Mateus Miranda ([email protected])
- Willian Marques Freire ([email protected])
- Matheus Portolan ([email protected])
- Gabi (not found)
- See faype.com
Pre requirements
| Plugin | README | | ------ | ------ | | AngularJs | https://angularjs.org/ |
Installation
$ bower install ng-easy-infinite-scroll --save
$ npm install ng-easy-infinite-scroll --save
Put in your code the following script:
<script src="bower_components/ng-easy-infinite-scroll/dist/ng-easy-infinite-scroll.min.js"></script>
<script src="node_modules/ng-easy-infinite-scroll/dist/ng-easy-infinite-scroll.min.js"></script>
Are you ready to start?
Usage
<div class="row example" infinite-scroll="loadMore()" infinite-disabled="isDisabled">
<div class="col-md-3" ng-repeat="i in array track by $index">
{{i}}
</div>
</div>