У меня проблемы с предыдущей и следующей страницей. Может кто-нибудь помочь, как я могу сделать предыдущий и следующий на нумерации страниц? Я хочу, чтобы моя нумерация страниц была такой Предыдущая 1 2 3 Следующая. Вот мой jsfiddle https://jsfiddle.net/cspzm21o/2/
pagination : function(activePage) {
this.currentPage = activePage;
this.startIndex = (this.currentPage * 10) - 10;
this.endIndex = this.startIndex + 10;
},
previous : function() {
this.startIndex--;
},
next : function() {
this.startIndex++;
}