I hope someone can help me. Here is my project: http://jsfiddle.net/oz7bgL5v/8/
adjustNav: function(self, $parent) {
self.$elem.find('.' + self.config.currentClass).removeClass(self.config.currentClass);
$(".next").click();
$parent.addClass(self.config.currentClass);
}
This works when scrolling down but not when scrolling up.
I just need to go back in pagination navigation (click "previous" button) when scrolling up (You intuitively can understand what I mean when you see my project.)