Commit e68358f2375db70c93e57f0901719bebf2ee3f02
Exists in
master
Merge branch 'master' into 'master'
Master (pmarco) See merge request modulos-npm/foca-modal-transportista!1
Showing
1 changed file
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> |