aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/webapp/apps/frontPageApp/personList.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/webapp/apps/frontPageApp/personList.html')
-rwxr-xr-xsrc/main/resources/webapp/apps/frontPageApp/personList.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/webapp/apps/frontPageApp/personList.html b/src/main/resources/webapp/apps/frontPageApp/personList.html
index 41f2f63..2c14b01 100755
--- a/src/main/resources/webapp/apps/frontPageApp/personList.html
+++ b/src/main/resources/webapp/apps/frontPageApp/personList.html
@@ -46,10 +46,10 @@
</div>
</div>
<ul class="pager">
- <li class="previous" ng-show="persons.startIndex > 0">
+ <li ng-show="persons.showPrev()" class="previous {{{true: 'disabled', false: ''}[persons.prevDisabled()]}}">
<a ng-click="persons.prev()">&larr; Prev</a>
</li>
- <li class="next">
+ <li ng-show="persons.showNext()" class="next {{{true: 'disabled', false: ''}[persons.nextDisabled()]}}">
<a ng-click="persons.next()">Next &rarr;</a>
</li>
</ul>