You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
My situation:
I have a slider with two knobs (pointers).
It's working great (thanks for the gem!), but: clicking on the left pointer begins in fact clicks on right pointer and starts to move the range as I wanted to change the right's end of range. Thus, moving the minimum limit of the range is really difficult for the user.
Let's look at the screen:
When I looked into source: .input.high has the width as the yellow rectangle on the picture, but should be of width of the green square.
.input.high and .input.low offsets should be -= $('.pointer').width()
I wanted to changed it but unfortunately source code currently is hardly readable right now (seems like it's translated from coffescript and there are no .coffee files here).
Meanwhile, if someone'd have the same issue, here's quick fix:
slider .input.high {
margin-left:20px; // if your span.pointer has 20px width
}
The text was updated successfully, but these errors were encountered:
Yeah, I noticed this too while refactoring and reworking the code. I've fixed the issue but I'm waiting to push it up until I've finished a few other fixes and enhancements.
My situation:
I have a slider with two knobs (pointers).
It's working great (thanks for the gem!), but: clicking on the left pointer begins in fact clicks on right pointer and starts to move the range as I wanted to change the right's end of range. Thus, moving the minimum limit of the range is really difficult for the user.
Let's look at the screen:
When I looked into source:
.input.high
has the width as the yellow rectangle on the picture, but should be of width of the green square..input.high
and.input.low
offsets should be-= $('.pointer').width()
I wanted to changed it but unfortunately source code currently is hardly readable right now (seems like it's translated from coffescript and there are no .coffee files here).
Meanwhile, if someone'd have the same issue, here's quick fix:
The text was updated successfully, but these errors were encountered: