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