I want to extend pagination directive (from angular-bootstrap),
but cannot find information how to extend built-in directives.
Basically i want paginate to do what it does + extra functionality of displaying [currentPage]/[totalpage] next to pagination buttons.
I don't want to create nested directive in pagination, just want be able to use:
<pagination
class="pagination-sm"
boundary-links="true"
<!-- based on attribute below i want to display 'current/total' -->
meta-info="true"
>
</pagination>
Can anyone help or navigate to helping source?