Skip to content

Commit

Permalink
fix(md-pagination): fix last ... indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanood committed Jul 22, 2016
1 parent 5a8a8eb commit 0bfd109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pagination/pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<li md-waves click.delegate="setActivePage(p+1)" repeat.for="p of mdPageLinks" class="${ p+1 === mdActivePage ? 'active' : ''}">
<span if.bind="$first && p > 0">...</span>
<a>${p+1}</a>
<span if.bind="$last && p <= mdPages">...</span>
<span if.bind="$last && p < mdPages - 1">...</span>
</li>
</template>
<template if.bind="mdShowPrevNext">
Expand Down

0 comments on commit 0bfd109

Please sign in to comment.