Skip to content

Instantly share code, notes, and snippets.

@Gwash3189
Created May 26, 2014 01:04
Show Gist options
  • Save Gwash3189/56c76772a2ae0bff9fb0 to your computer and use it in GitHub Desktop.
Save Gwash3189/56c76772a2ae0bff9fb0 to your computer and use it in GitHub Desktop.
Pagination in JS
function getPage(page, list, amountPerPage) {
if (page > 0) {
var start = 0;
if (page !== 1) {
start = page;
start = start -1;
}
if (list.length > 0) {
return angular.copy(list).splice((start * amountPerPage), amountPerPage);
}
}
return [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment