bug in slider position calculation with min-value (1.5b) with fix

bug in slider position calculation with min-value (1.5b) with fix


Hi,
when a slider has a min value, the position is not calculated
correctly, when clicking on the slider or dragging the slider.
To fix modify convertValue as follows:
        convertValue: function(value) {
            return this.options.minValue + (value / (this.size -
this.handleSize())) * this.options.realMaxValue;
        },
Regards,
Andreas