themes/apachecon/layouts/search/section.html [280:288]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
$.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();
}
})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
themes/apachecon/layouts/search/section.html [298:306]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
$.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();
}
})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -