├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dist ├── README.md ├── paging.js └── paging.min.js ├── package.json ├── src ├── README.md ├── app.js ├── index.html └── paging.js └── test ├── README.md ├── karma.conf.js ├── paging-click.spec.js ├── paging-css.spec.js ├── paging-disabled.spec.js ├── paging-display.spec.js ├── paging-number.spec.js └── paging-text.spec.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/bower.json -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/dist/paging.js -------------------------------------------------------------------------------- /dist/paging.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/dist/paging.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/src/README.md -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/src/app.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/src/index.html -------------------------------------------------------------------------------- /src/paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/src/paging.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/README.md -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/paging-click.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/paging-click.spec.js -------------------------------------------------------------------------------- /test/paging-css.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/paging-css.spec.js -------------------------------------------------------------------------------- /test/paging-disabled.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/paging-disabled.spec.js -------------------------------------------------------------------------------- /test/paging-display.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/paging-display.spec.js -------------------------------------------------------------------------------- /test/paging-number.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/paging-number.spec.js -------------------------------------------------------------------------------- /test/paging-text.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brantwills/Angular-Paging/HEAD/test/paging-text.spec.js --------------------------------------------------------------------------------