Bug with negative values in slider (jqueryUI 1.5b)

Bug with negative values in slider (jqueryUI 1.5b)


I have made the upgrade to jqueryUI 1.5b and I get a bug using the
slider
with negative values. I initialize the slider with something like :
$("#example").slider(
     {
        minValue : -100,
        maxValue : 100
     }
    );
Now when I drag the slider handle, it works fine. Bug if I click
anywhere on
the background slide, the handle moves with a 100 pixel offset to the
right. This used to work fine in the previous version of the UI.
I made a quick hack in my code to set the range between 0 and 200 and
I just
substract 100 to the value before sending it back to the server. That
should
still be fixed.