Commit a85ab4ec7571e2475554886ba1c588ff7e73d1fe
1 parent
9ca3d14dd8
Exists in
master
Fix paginador.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/views/modal-transportista.html
| ... | ... | @@ -65,7 +65,7 @@ |
| 65 | 65 | <nav ng-show="currentPageTransportistas.length > 0 && primerBusqueda"> |
| 66 | 66 | <ul class="pagination pagination-sm justify-content mb-0"> |
| 67 | 67 | <li class="page-item" ng-class="{'disabled': currentPage == 1}"> |
| 68 | - <a class="page-link" href="#" ng-click="selectPage(currentPage - 1)"> | |
| 68 | + <a class="page-link" href="javascript:void();" ng-click="selectPage(currentPage - 1)"> | |
| 69 | 69 | <span aria-hidden="true">«</span> |
| 70 | 70 | <span class="sr-only">Anterior</span> |
| 71 | 71 | </a> |
| ... | ... | @@ -77,13 +77,13 @@ |
| 77 | 77 | > |
| 78 | 78 | <a |
| 79 | 79 | class="page-link" |
| 80 | - href="#" | |
| 80 | + href="javascript:void();" | |
| 81 | 81 | ng-click="selectPage(pagina)" |
| 82 | 82 | ng-bind="pagina" |
| 83 | 83 | ></a> |
| 84 | 84 | </li> |
| 85 | 85 | <li class="page-item" ng-class="{'disabled': currentPage == lastPage}"> |
| 86 | - <a class="page-link" href="#" ng-click="selectPage(currentPage + 1)"> | |
| 86 | + <a class="page-link" href="javascript:void();" ng-click="selectPage(currentPage + 1)"> | |
| 87 | 87 | <span aria-hidden="true">»</span> |
| 88 | 88 | <span class="sr-only">Siguiente</span> |
| 89 | 89 | </a> |