iscroll icon indicating copy to clipboard operation
iscroll copied to clipboard

if outside of the boundaries,currentPage not change

Open weizs opened this issue 8 years ago • 1 comments

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;
}

weizs avatar Nov 01 '16 14:11 weizs

good job.

suhebater avatar Feb 02 '18 11:02 suhebater