Merge commit 'catalyst/MOODLE_19_STABLE' into mdl19-linuxchix
[moodle-linuxchix.git] / lib / yui / slider / README
blob4bd98619eb6f9c31ba21c315873e51ee84eb0b5e
1 Slider - Release Notes
3 2.5.2
4    * No change
6 2.5.1
7     * No change
9 2.5.0
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
14 2.4.0
15     * No change
17 2.3.1
19    * getValue will return the last value or 0 rather than NaN if the control 
20      is display:none.
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.
32 2.3.0
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)
37 2.2.2
38    * No change
40 2.2.1
41    * No change
43 2.2.0
44    * Added the missing "force" parameter to the signature for setRegionValue
45    * Deprecated the moveComplete flag
47 0.12.2
48    * No change
50 0.12.1
52    * Removed unnecessary getXY calls that were contributing to slower performance
53      in FireFox when the slider was deeply nested in the DOM.
55 0.12.0
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
76 0.11.3
78    * No change
80 0.11.0
82    * When the thumb is clicked and dragged, the click position delta is properly
83      applied.
85    * The slider background can be disabled by setting backgroundEnabled to false.
87    * Added SliderThumb->clearTicks
89    * Incorporated updated drag and drop performance improvements
91 0.10.0
93    * Drag and drop's autoscroll feature is now turned off by default
94      in the slider.
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