olalonde / handlebars-paginate

Pagination helper for Handlebars.
http://syskall.com/pagination-with-handlebars/
59 stars 21 forks source link

Prev and Next Buttons are not working Properly #24

Open Asumoon opened 5 years ago

Asumoon commented 5 years ago

Prev and Next Buttons are not working Properly

Just working for 1 increment or 1 decrement with current page that passed from pagination.

eg:- pagination: { page:5 } then next is working up to 6 prievious is working up to 4

{{#paginate pagination type="previous"}} <li {{#if disabled}}class="disabled"{{/if}}>Prev {{/paginate}}

{{#paginate pagination type="next"}} <li {{#if disabled}}class="disabled"{{/if}}>Next {{/paginate}}

jimf commented 5 years ago

Just working for 1 increment or 1 decrement with current page that passed from pagination.

This is how next/previous are intended to work. Can you elaborate on "not working Properly" or what your expectation is?