Skip to content

Commit

Permalink
i hate my life
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaliak committed Jan 6, 2017
1 parent 0d9cf81 commit 9449c25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/laravel-vue-pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ module.exports = {
start = start < 1 ? 1 : start;
end = end >= this.data.last_page ? this.data.last_page + 1 : end;

for (index = start; index < end; index++) {
pages.push(index);
}
for (index = start; index < end; index++) {
pages.push(index);
}

return pages;
}
Expand Down

0 comments on commit 9449c25

Please sign in to comment.