| 166 | | return ((parseInt($(handle != undefined ? this.handle[handle] || handle : this.currentHandle).css(this.properties[0]),10) / (this.size - this.handleSize())) * this.options.realMaxValue) + this.options.minValue; |
| | 166 | var value = ((parseInt($(handle != undefined ? this.handle[handle] || handle : this.currentHandle).css(this.properties[0]),10) / (this.size - this.handleSize())) * this.options.realMaxValue) + this.options.minValue; |
| | 167 | var o = this.options; |
| | 168 | if (o.stepping) { |
| | 169 | value = Math.round(value / o.stepping) * o.stepping; |
| | 170 | } |
| | 171 | return value |