themes/apachecon/layouts/search/section.html [298:308]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
$.each($("article"), function (index, item) {
var start = current_page * (current_num - 1);
var end = current_page * current_num;
if (index >= start && index < end) {
$(this).show();
} else {
$(this).hide();
}
})
$("#pagination-clean li").eq(current_num + 1).siblings('li').removeClass('selected');
$("#pagination-clean li").eq(current_num + 1).addClass('selected');
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
themes/apachecon/layouts/search/section.html [320:330]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
$.each($("article"), function (index, item) {
var start = current_page * (current_num - 1);
var end = current_page * current_num;
if (index >= start && index < end) {
$(this).show();
} else {
$(this).hide();
}
})
$("#pagination-clean li").eq(current_num + 1).siblings('li').removeClass('selected');
$("#pagination-clean li").eq(current_num + 1).addClass('selected');
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -