10 * Slider onDrag now calls fireEvents, so bg mousedown, drag, mouseup fires change events
11 * Slider uses new dragOnly=true property added in dragdrop
12 * Introduced DualSlider
19 * getValue will return the last value or 0 rather than NaN if the control
22 * The slider will not fire slideStart/change/slideEnd events during its
23 initial setup unless setValue was called prior to initialization.
25 * slideStart/slideEnd now fire consistently among the various methods of
26 changing the slider value (setValue, bg click, thumb drag). A bg click
27 and drag continuation will result in two start/end events.
29 * Added a silent flag to setValue and setRegionValue to silence all of the
30 events during that operation.
33 * Added valueChangeSource, which specifies whether the last value change
34 was the result of user interaction with the control, or a result of a
35 programmatic update (setValue)
44 * Added the missing "force" parameter to the signature for setRegionValue
45 * Deprecated the moveComplete flag
52 * Removed unnecessary getXY calls that were contributing to slower performance
53 in FireFox when the slider was deeply nested in the DOM.
57 * Added "slideStart", "slideEnd", and "change" custom events. The abstract
58 methods these will eventually replace still work.
60 * The default animation duration is 0.2 seconds (reduced from 0.4 seconds),
61 and is configurable via the animationDuration property.
63 * Keyboard navigation is now built in. The background needs a tabindex for
64 keyboard nav to work. Keyboard nav can be disabled by setting enableKeys
65 to false. The number of pixels the slider moves when the arrow keys
66 are pressed is controlled by keyIncrement, and defaults to 20. Note,
67 Safari support limited to background element types that support focus
68 in that browser. http://bugs.webkit.org/show_bug.cgi?id=7138
70 * Fixed broken doctype in examples/index.html
72 * Catching an unhandled script exception in FF that could occur when
73 attempting to focus the slider background while a text field without
74 autocomplete="false" has focus
82 * When the thumb is clicked and dragged, the click position delta is properly
85 * The slider background can be disabled by setting backgroundEnabled to false.
87 * Added SliderThumb->clearTicks
89 * Incorporated updated drag and drop performance improvements
93 * Drag and drop's autoscroll feature is now turned off by default
96 * The slider no longer sets its initial value upon initialization
98 * RGB slider example fixed for IE7.
100 * Updated to work with the onAvailable feature in Drag and Drop.
102 * Updated the basic slider example page to make the control more
103 accessible to non-FF1.5 browsers.
105 * Split the examples into separate pages