Skip to content

Commit

Permalink
🔀 Retirei as # dos links da paginação
Browse files Browse the repository at this point in the history
issues: #17
  • Loading branch information
Clayder committed Jun 30, 2019
1 parent 9df25b9 commit cf31769
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/js/App/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function getItem(data, i) {
let active = (i == data.current_page) ? "class='active'" : "";
return `
<li ${active}>
<a href="#" pagina="${i}">${i}</a>
<a href="javascript:void(0);" pagina="${i}">${i}</a>
</li>
`;
}
Expand All @@ -116,7 +116,7 @@ function getItemAnterior(data) {
let i = data.current_page - 1;
return `
<li>
<a href="#" pagina="${i}" aria-label="Previous">
<a href="javascript:void(0);" pagina="${i}" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
Expand All @@ -138,7 +138,7 @@ function getItemProximo(data) {
let i = data.current_page + 1;
return `
<li>
<a href="#" pagina="${i}" aria-label="Next">
<a href="javascript:void(0);" pagina="${i}" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
Expand Down

0 comments on commit cf31769

Please sign in to comment.