wesnolte / Pajinate

A jQuery Pagination Plugin
http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/
MIT License
207 stars 97 forks source link

ellipse set to visible when too few items for paging #35

Open Maruz opened 11 years ago

Maruz commented 11 years ago

I'm working with a site where the amount of items to page may be less than the amount the script is set to show per page. It hides all the paging controls except for ellipses.

Ideal should be that this case is handeled by the plugin.

$(document).ready(function() {
    $('.NewsSearchResult').pajinate({
        items_per_page: 2,
        nav_label_prev: '< Previous Page',
        nav_label_next: 'Next Page >',
        show_first_last: false,
        num_page_links_to_display: 5
    });
});