Hi,
I know that it was released on the recent version 1.1.2 (Scrollable), that next and nextPage buttons are disabled when the item count is less than the scrollable size. It was a must. Congratulations for your work!
But in opinion it does not makes sense that next nextPage and buttons are available when item count is EQUAL than scrollable size too.
So I make a little change on version 1.1.2 (Scrollable) and leave it here for all who need to change this:
search:
if (self.getSize() < conf.size)
replace
if (self.getSize() <= conf.size)
I know that it was released on the recent version 1.1.2 (Scrollable), that next and nextPage buttons are disabled when the item count is less than the scrollable size. It was a must. Congratulations for your work!
But in opinion it does not makes sense that next nextPage and buttons are available when item count is EQUAL than scrollable size too.
So I make a little change on version 1.1.2 (Scrollable) and leave it here for all who need to change this:
search:
if (self.getSize() < conf.size)
replace
if (self.getSize() <= conf.size)