Changeset 5513
- Timestamp:
- 05/08/08 19:25:14 (3 days ago)
- Files:
-
- 1 modified
-
trunk/ui/ui.slider.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ui/ui.slider.js
r5508 r5513 211 211 if (clickedHandle || this.disabled || !(this.currentHandle || this.previousHandle)) 212 212 return; 213 214 // Prepare the outer size215 this.actualSize = { width: this.element.outerWidth() , height: this.element.outerHeight() };216 213 217 214 // If a previous handle was focussed, focus it again … … 325 322 326 323 moveTo: function(value, handle, noPropagation) { 327 var o = this.options; 324 325 var o = this.options; 326 327 // Prepare the outer size 328 this.actualSize = { width: this.element.outerWidth() , height: this.element.outerHeight() }; 329 328 330 if (handle == undefined && !this.currentHandle && this.handle.length != 1) 329 331 return false; //If no handle has been passed, no current handle is available and we have multiple handles, return false