josecebe / twbs-pagination

jQuery pagination plugin (bootstrap powered)
http://josecebe.github.io/twbs-pagination/
Other
1.1k stars 401 forks source link

Is there any config via which I can disable backward moment in pagination option? #67

Closed evivz closed 7 years ago

evivz commented 8 years ago

Is there any config via which I can disable backward moment in pagination option

eugenesimakin commented 8 years ago

Hi, you can use prev and first options, if I understand you correctly.

Example:

   $('#pagination-demo').twbsPagination({
        totalPages: "35",
        visiblePages: "10",
        prev: false,
        first: false
    });

But it is in any case user can move backward. If you want truly disable this, you'll have to change render algorithm.

eugenesimakin commented 7 years ago

Out of date. Closed