We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I created a fiddler demo:
https://jsfiddle.net/rzupvdfs/
move the range compeltely to the left. The high handle will jump to the left for about the same value as defined as floor.
The fix would be in rzslider.js in "onDragMove":
The first if block should look like this:
if (newOffset <= this.dragging.lowDist) { if (pointer.rzsl === this.dragging.lowDist) { return; } newMinValue = this.minValue; newMinOffset = 0; newMaxValue = this.minValue + this.dragging.difference; // <-- add minValue newMaxOffset = this.valueToOffset(newMaxValue); }
Great slider btw :)
The text was updated successfully, but these errors were encountered:
Indeed, you are right. I'll fix it once the 2.0.0 version is released (soon). You can see it in the PR list if you want.
Sorry, something went wrong.
Fix draggable range when floor is not 0
a7c7f0e
As explained in #172 .
Fixed in master.
No branches or pull requests
I created a fiddler demo:
https://jsfiddle.net/rzupvdfs/
move the range compeltely to the left. The high handle will jump to the left for about the same value as defined as floor.
The fix would be in rzslider.js in "onDragMove":
The first if block should look like this:
Great slider btw :)
The text was updated successfully, but these errors were encountered: