jPages
jPages copied to clipboard
Update master
This is fix for the following issue https://github.com/luis-almeida/jPages/issues/10
@vpiyanov - How do I use jPages with this fix? I am using a page with two tabs on it (div's). Each tab has its own content with pagination.
$(".holder-tasks").jPages({
containerID: "messagesTasks",
perPage: 5,
minHeight: false,
callback: function(pages, items) {
bootstrapPagination($('.holder-tasks'));
}
});
$(".holder-messages").jPages({
containerID: "messages",
perPage: 5,
minHeight: false,
callback: function(pages, items) {
bootstrapPagination($('.holder-messages'));
}
});