Commit 07ccb3816f0a9f857d1fbfe6eeed30f979df6733
1 parent
dc402730
Exists in
master
and in
14 other branches
Fix pagination in blog view
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/article/types/blog/blog.html
... | ... | @@ -17,8 +17,8 @@ |
17 | 17 | </div> |
18 | 18 | </div> |
19 | 19 | |
20 | - <pagination ng-model="ctrl.currentPage" total-items="ctrl.totalPosts" class="pagination-sm center-block" | |
20 | + <uib-pagination ng-model="ctrl.currentPage" total-items="ctrl.totalPosts" class="pagination-sm center-block" | |
21 | 21 | boundary-links="true" items-per-page="ctrl.perPage" ng-change="ctrl.loadPage()" |
22 | 22 | first-text="«" last-text="»" previous-text="‹" next-text="›"> |
23 | - </pagination> | |
23 | + </uib-pagination> | |
24 | 24 | </div> | ... | ... |