Bug Tracker

Changeset 4890

Show
Ignore:
Timestamp:
03/12/08 02:53:21 (10 months ago)
Author:
braeker
Message:

Slider minValue bug fixed

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ui/ui.slider.js

    r4730 r4890  
    162162        }, 
    163163        convertValue: function(value) { 
    164             return (value / (this.size - this.handleSize())) * this.options.realMaxValue; 
     164            return this.options.minValue + (value / (this.size - this.handleSize())) * this.options.realMaxValue; 
    165165        }, 
    166166        translateValue: function(value) {