iscroll
iscroll copied to clipboard
if outside of the boundaries,currentPage not change
I use IScroll v5.2.0
scrollX and snap is activated,when currentPage is not first or last page,if outside of the boundaries,currentPage not change, I solved like this:
// reset if we are outside of the boundaries
if (this.resetPosition(this.options.bounceTime)) {
if (this.options.snap) {
this.currentPage = this._nearestSnap(this.x, this.y);
}
return;
}
good job.