Commit c0dca9e0107cde8b9ffa3cc61ffd16d3b7ff9b49
1 parent
c8fe379fd6
Exists in
master
paginación correcta
Showing
1 changed file
with
3 additions
and
3 deletions
 
Show diff stats
src/views/foca-busqueda-cliente-modal.html
| ... | ... | @@ -69,7 +69,7 @@ | 
| 69 | 69 | <nav ng-show="currentPageClientes.length > 0 && primerBusqueda"> | 
| 70 | 70 | <ul class="pagination pagination-sm mb-0"> | 
| 71 | 71 | <li class="page-item" ng-class="{'disabled': currentPage == 1}"> | 
| 72 | - <a class="page-link" href="#" ng-click="selectPage(currentPage - 1)"> | |
| 72 | + <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage - 1)"> | |
| 73 | 73 | <span aria-hidden="true">«</span> | 
| 74 | 74 | <span class="sr-only">Anterior</span> | 
| 75 | 75 | </a> | 
| ... | ... | @@ -81,13 +81,13 @@ | 
| 81 | 81 | > | 
| 82 | 82 | <a | 
| 83 | 83 | class="page-link" | 
| 84 | - href="#" | |
| 84 | + href="javascript:void()" | |
| 85 | 85 | ng-click="selectPage(pagina)" | 
| 86 | 86 | ng-bind="pagina" | 
| 87 | 87 | ></a> | 
| 88 | 88 | </li> | 
| 89 | 89 | <li class="page-item" ng-class="{'disabled': currentPage == lastPage}"> | 
| 90 | - <a class="page-link" href="#" ng-click="selectPage(currentPage + 1)"> | |
| 90 | + <a class="page-link" href="javascript:void()" ng-click="selectPage(currentPage + 1)"> | |
| 91 | 91 | <span aria-hidden="true">»</span> | 
| 92 | 92 | <span class="sr-only">Siguiente</span> | 
| 93 | 93 | </a> |