Commit 96c49ad80156b094e811f774d4fde2939d1bad9e
1 parent
97d48a46a6
Exists in
master
and in
1 other branch
Fix paginador.
Showing
1 changed file
with
11 additions
and
3 deletions
 
Show diff stats
src/views/foca-modal-remito.html
| ... | ... | @@ -67,7 +67,11 @@ | 
| 67 | 67 | <nav ng-show="currentPageRemitos.length > 0 && primerBusqueda"> | 
| 68 | 68 | <ul class="pagination pagination-sm justify-content mb-0"> | 
| 69 | 69 | <li class="page-item" ng-class="{'disabled': currentPage == 1}"> | 
| 70 | - <a class="page-link" href="#" ng-click="selectPage(currentPage - 1)"> | |
| 70 | + <a | |
| 71 | + class="page-link" | |
| 72 | + href="javascript:void;" | |
| 73 | + ng-click="selectPage(currentPage - 1)" | |
| 74 | + > | |
| 71 | 75 | <span aria-hidden="true">«</span> | 
| 72 | 76 | <span class="sr-only">Anterior</span> | 
| 73 | 77 | </a> | 
| ... | ... | @@ -79,13 +83,17 @@ | 
| 79 | 83 | > | 
| 80 | 84 | <a | 
| 81 | 85 | class="page-link" | 
| 82 | - href="#" | |
| 86 | + href="javascript:void;" | |
| 83 | 87 | ng-click="selectPage(pagina)" | 
| 84 | 88 | ng-bind="pagina" | 
| 85 | 89 | ></a> | 
| 86 | 90 | </li> | 
| 87 | 91 | <li class="page-item" ng-class="{'disabled': currentPage == lastPage}"> | 
| 88 | - <a class="page-link" href="#" ng-click="selectPage(currentPage + 1)"> | |
| 92 | + <a | |
| 93 | + class="page-link" | |
| 94 | + href="javascript:void;" | |
| 95 | + ng-click="selectPage(currentPage + 1)" | |
| 96 | + > | |
| 89 | 97 | <span aria-hidden="true">»</span> | 
| 90 | 98 | <span class="sr-only">Siguiente</span> | 
| 91 | 99 | </a> |