Commit c69937291921db783579a8ed4912abf9e512df86
1 parent
d34caf7b9c
Exists in
master
Fix paginador.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/views/foca-modal-nota-pedido.html
... | ... | @@ -67,7 +67,7 @@ |
67 | 67 | <nav ng-show="currentPageNotasPedido.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 class="page-link" href="javascript:void();" ng-click="selectPage(currentPage - 1)"> | |
71 | 71 | <span aria-hidden="true">«</span> |
72 | 72 | <span class="sr-only">Anterior</span> |
73 | 73 | </a> |
... | ... | @@ -79,13 +79,13 @@ |
79 | 79 | > |
80 | 80 | <a |
81 | 81 | class="page-link" |
82 | - href="#" | |
82 | + href="javascript:void();" | |
83 | 83 | ng-click="selectPage(pagina)" |
84 | 84 | ng-bind="pagina" |
85 | 85 | ></a> |
86 | 86 | </li> |
87 | 87 | <li class="page-item" ng-class="{'disabled': currentPage == lastPage}"> |
88 | - <a class="page-link" href="#" ng-click="selectPage(currentPage + 1)"> | |
88 | + <a class="page-link" href="javascript:void();" ng-click="selectPage(currentPage + 1)"> | |
89 | 89 | <span aria-hidden="true">»</span> |
90 | 90 | <span class="sr-only">Siguiente</span> |
91 | 91 | </a> |