Skip to content

Commit

Permalink
Update to v0.6.1
Browse files Browse the repository at this point in the history
See release notes
  • Loading branch information
michaelbromley committed Mar 27, 2015
1 parent 125b153 commit 592bbbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularUtils-pagination",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "https://github.com/michaelbromley/angularUtils/tree/master/src/directives/pagination",
"authors": [
"Michael Bromley <michael@michaelbromley.co.uk>"
Expand Down
3 changes: 2 additions & 1 deletion dirPagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@

scope.setCurrent = function(num) {
if (isValidPageNumber(num)) {
num = parseInt(num, 10);
paginationService.setCurrentPage(paginationId, num);
}
};
Expand Down Expand Up @@ -511,4 +512,4 @@
};
};
}
})();
})();

0 comments on commit 592bbbe

Please sign in to comment.