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
Thanks for the awesome widget, but I encountered an issue and would like to report it and see if there is a possible fix or work around.
I am using an existing jsfiddle that I found in the forum and I tried it with the latest code base, jquery-ui, jQRangeSlider library, the issue is still there.
When the slider is expanded to its max, the left side of slider appears to be flushed with its container, but the right side of slider appears to be one pixel off with the right edge of the container. If you enlarge the screen or shorten the width of the display, the issue becomes more noticeable.
It seems that ui-rangeSlider-bar has a "left" value of a negative value but the "right" value is correct.
Any suggestion to make both ends look the same will be greatly appreciated!
The text was updated successfully, but these errors were encountered:
Thanks for the awesome widget, but I encountered an issue and would like
to report it and see if there is a possible fix or work around.
I am using an existing jsfiddle that I found in the forum and I tried it
with the latest code base, jquery-ui, jQRangeSlider library, the issue is
still there.
When the slider is expanded to its max, the left side of slider appears to
be flushed with its container, but the right side of slider appears to be
one pixel off with the right edge of the container. If you enlarge the
screen or shorten the width of the display, the issue becomes more
noticeable.
It seems that ui-rangeSlider-bar has a "left" value of a negative value
but the "right" value is correct.
This could be related to iThing.css style only. I found a way to work around it by adding a small adjustment to a value in _applyPosition(). This function is called from _mouseDrag()
_applyPosition: function(a) {
a+=0.5;
var b = {
top: this.cache.offset.top,
left: a
};
this.element.offset({
left: a
}), this.cache.offset = b
},
Thanks for the awesome widget, but I encountered an issue and would like to report it and see if there is a possible fix or work around.
I am using an existing jsfiddle that I found in the forum and I tried it with the latest code base, jquery-ui, jQRangeSlider library, the issue is still there.
http://jsfiddle.net/vM844/1218/
When the slider is expanded to its max, the left side of slider appears to be flushed with its container, but the right side of slider appears to be one pixel off with the right edge of the container. If you enlarge the screen or shorten the width of the display, the issue becomes more noticeable.
It seems that ui-rangeSlider-bar has a "left" value of a negative value but the "right" value is correct.
Any suggestion to make both ends look the same will be greatly appreciated!
The text was updated successfully, but these errors were encountered: