Commit Graph

82 Commits

Author SHA1 Message Date
Scott González
1a28670720 Slider: Create a copy of the options.values array for the return value of _value(). Fixes #4751 - Dragging slider modifies values, even if callback returns false.
Thanks bkrausz.
2009-08-04 23:35:08 +00:00
Scott González
8634ba993c All mouse-based plugins: Extend $.ui.mouse.defaults. Changed $.ui.mouse.defaults.cancel to ":input,option" which is used by every plugin as its default. Fixes #4584 ($.ui.mouse.defaults never used). 2009-06-09 00:46:00 +00:00
Jörn Zaefferer
f6b219fdc4 fix for #4492: added missing semicolons 2009-05-07 10:50:38 +00:00
Andrew Powell
30ad533948 updated the condition to assert that values.legnth ==2 and range: true. (fixed #3736 - Slider: some handles get stuck when using two or more handles) 2009-04-19 23:50:48 +00:00
Scott González
1195854aaa Merged in widget-factory branch and added tests. Fixes #4411 - Widget factory should auto detect getters. 2009-04-15 02:33:28 +00:00
Richard Worth
fbb912524d fixed #4391 - ui-state-hover, ui-state-active and disabled sliders 2009-04-02 00:10:52 +00:00
Richard Worth
b025e67259 Fixed #4318 - Slider: method destroy does not remove ui-slider-range 2009-03-18 08:58:53 +00:00
Richard Worth
7e3b8483a3 Fixed #4315 (Slider: clicking on slider with negative values causes error 'closestHandle is undefined') 2009-03-10 11:17:21 +00:00
Richard Worth
4bfadc4514 Fixed #4292 (Slider: ui.value incorrect in slide event if handle at value 0) 2009-03-10 01:35:09 +00:00
Richard Worth
439d93bf8b Fixed #4292 (Slider: ui.value incorrect in slide event if handle at value 0) 2009-03-09 12:36:50 +00:00
Richard Worth
5b00c21719 slider: use handle width / 2 instead of marginLeft to find offset of mousedown relative to center of handle (fixes #4063 - slider: horizontal slider handle jumps up when you click on it IE6) 2009-02-28 20:45:05 +00:00
Richard Worth
bd3dc48e02 changed ui.jquery.com to jqueryui.com 2009-02-27 11:41:40 +00:00
Richard Worth
639da64b34 slider: only return false on handle keydown if one of arrow keys or pgup/down are pressed (otherwise tab is broken) 2009-02-23 12:57:33 +00:00
Richard Worth
3342fb841a Slider: Fixed min and max range sliders to add ui-slider-range-min or ui-slider-range-max class and not set corresponding left/right/top/bottom inline, only width/height
(fixes #4182 - slider min/max classes aren't being added to range div)
(fixes #3850 - Slider Range With Fixed Max Demo Bug in Opera)
2009-02-21 11:40:05 +00:00
Scott González
f39561cc7f Slider: Removed support for auto orientation, set default to horizontal. Fixed #4174. 2009-02-18 03:00:03 +00:00
Paul Bakaus
2ffcf02de3 slider: limit the returned floats to 5 digits after the decimal point, corrects JS float errors (fixes #4124 - Value should always be constrained to valid step values) 2009-02-17 13:01:19 +00:00
Paul Bakaus
9c4b8a9141 slider:
- fixed propagation of change event within _slide (fixes #4005 - slider and change callback with range: true)
- normalized all ui hash information
2009-02-17 12:21:42 +00:00
Paul Bakaus
77043b9bf2 slider: animate option was ignored if only one handle (fixes #4167 slider:animation for single handles broken) 2009-02-17 11:13:30 +00:00
Scott González
55081dae77 Slider: Fixed divide by zero error when min and max are the same. Fixed #4155 - IE6 error by min==max. 2009-02-17 01:39:25 +00:00
Richard Worth
fddd2c3965 slider: fixed failing visual test: slider_in_container_with_scrollbars 2009-02-10 03:48:21 +00:00
Richard Worth
5a6e2bdbb6 Fixed 4062 - slider: vertical slider handle jumps up when you click on it 2009-02-05 06:01:10 +00:00
Richard Worth
93fbdd41b3 Fixed #3804 (Multiple Slider Focus Issues) 2009-02-05 05:25:12 +00:00
Scott González
3051eca215 Slider:
- Fixed #4016: Vertical slider was unusable when the thumb was at the min value.
  - Fixed #3736 for real: Vertical slider was unusable when using a range and both thumbs were at the min value.
2009-02-02 03:07:54 +00:00
Paul Bakaus
bcee037715 slider: fixed orientation detection 2009-01-29 15:13:47 +00:00
Paul Bakaus
4bf637bb2c slider: added better description for workaround for #3726 2009-01-28 23:11:15 +00:00
Paul Bakaus
b2cbdb6ff4 slider: added better description for workaround for #3726 2009-01-28 22:51:35 +00:00
Paul Bakaus
966f6e46dd slider: animate default should be false 2009-01-28 22:13:44 +00:00
Paul Bakaus
ab32cefef5 slider: animate default should be false 2009-01-28 22:11:33 +00:00
Paul Bakaus
be1b2b023a slider:
- implemented animate method
- slider min/max values could be exceeded using the keyboard (fixes #3737)
2009-01-28 22:07:46 +00:00
Paul Bakaus
1ad50e24a9 slider: closestHandle never got set when the distance between the handles are the maximum available (fixes #3948) 2009-01-28 19:14:38 +00:00
Paul Bakaus
bf6b493c90 slider:
- when dragging a handle, the position of the relative click is respected (fixes #3972)
- when dragging two range handles to 0, the slider was broken because the nearest handle would always be the first. Implemented a workaround. (fixes #3736)
2009-01-28 19:10:37 +00:00
Richard Worth
1b891501f2 whitespace 2009-01-22 13:10:18 +00:00
Richard Worth
df2ef4224a Fixed #3766 - slider seems to be missing ui.handle property in options 2009-01-20 13:31:30 +00:00
Eduardo Lundgren
8139c81d1b Revert changes for #3838 for the release 1.6rc5 2009-01-16 02:09:45 +00:00
Eduardo Lundgren
78c4d87d7b Fix for #3838 - Components should use this.widgetName on internally 2009-01-16 00:33:46 +00:00
Paul Bakaus
3780ee78e7 slider: implemented auto orientation, removed _orientation() in favor of this.orientation, saved some bytes by o=this.options in _init 2009-01-12 13:16:09 +00:00
Paul Bakaus
4b6e3fb12e slider: formatting 2009-01-12 13:02:47 +00:00
Richard Worth
a11c201008 Happy New Year 2009-01-03 21:55:13 +00:00
Scott González
59de964ad5 Slider: Fixed #3717: Correct event types for callbacks. 2008-12-31 21:27:56 +00:00
Richard Worth
3bffcdffa3 Fixed #3716 - slider: range handles should not be able to cross 2008-12-31 19:55:16 +00:00
Eduardo Lundgren
dbcf65fce9 Remove trailing spaces 2008-12-31 08:22:11 +00:00
Richard Worth
1907c374cf slider: added ui.values in the slide callback for a range 2008-12-31 04:48:12 +00:00
Richard Worth
cca491dc4f slider: removed hover and focus from range as it's not draggable (yet) 2008-12-23 16:06:38 +00:00
Richard Worth
22f25cbb0c merged dev/slider branch (revs 1152-1229) back to trunk 2008-12-23 10:38:12 +00:00
Richard Worth
b731dc5e97 Slider: started on #3650 - Slider: Update markup to new UI CSS Framework specs 2008-12-13 11:49:39 +00:00
Eduardo Lundgren
95c6c6dd62 Source formatting 2008-11-28 15:43:32 +00:00
Paul Bakaus
2b92a02170 slider: fixed regression caused by a recent change in the mouse core - since the mouse core doesn't stop mousedown propagation by default now, the mousedown event was triggered twice - once by the bound handle, and once by the actual element. 2008-11-24 17:02:26 +00:00
Richard Worth
e98934200f slider: formatting changes - moved some things around for consistency.
_init and destroy at the top, then _mouse methods. plugins, ui last. Sorted defaults alphabetically.
2008-11-21 04:40:23 +00:00
Richard Worth
2192c024e2 New file: AUTHORS.txt instead of having a single contributor's name in each file header. See http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/ca0b1cc9580141b 2008-11-21 02:14:03 +00:00
Eduardo Lundgren
558218f2aa Source formatting: Removing trailing spaces 2008-11-20 04:10:34 +00:00