• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Dec-2021-

assets/H03-May-2022-3128

docs/cheatsheets/H15-Dec-2021-

js/H03-May-2022-

tests/H03-May-2022-

READMEH A D15-Dec-20214.5 KiB13996

build.propertiesH A D15-Dec-2021158 64

build.xmlH A D15-Dec-2021285 76

README

1Slider - Release Notes
2
32.9.0
4    * No change
5
62.8.1
7    * No change
8
92.8.0
10    * baselinePos is reset on each mousedown to avoid a horrible positioning
11      bug in IE that sends the thumb off screen
12    * More work to get slideEnd event firing correctly and consistently.  This
13      time removed deprecated moveComplete from state change conditionals
14
152.7.0
16    * Sliders with ticks no longer require YAHOO.util.Anim to be animated.
17      Still need to set slider.animated = true, however.
18    * Added skin images to assets/skins/sam
19    * Structure changes for better compression
20    * Event cleanup, so slideStart and slideEnd fire consistently
21    * DualSlider setMinValue and setMaxValue set respective Slider values in non-silent mode
22    * Added SOURCE_KEY_EVENT as value for valueChangeSource
23    * Moved SOURCE_* to statics, deprecated instance consts
24    * Added key support for DualSlider
25    * Slider recalcs the thumb center point if it is not yet set when an operation requires it (useful for Sliders with thumb div or image without declared or styled dimensions)
26
272.6.0
28    * Vertical DualSlider correctly calculates minRange
29    * Correct handling of backgroundEnabled and lock()ing
30    * Added basic skin and image assets
31    * verifyOffset correction for background element moving in response to change event handler
32    * Target x,y rounded in response to FF (at least) producing subpixel coords
33    * _slideEnd now cleans state before firing slideEnd event
34
352.5.2
36    * No change
37
382.5.1
39    * No change
40
412.5.0
42    * Slider onDrag now calls fireEvents, so bg mousedown, drag, mouseup fires change events
43    * Slider uses new dragOnly=true property added in dragdrop
44    * Introduced DualSlider
45
462.4.0
47    * No change
48
492.3.1
50
51   * getValue will return the last value or 0 rather than NaN if the control
52     is display:none.
53
54   * The slider will not fire slideStart/change/slideEnd events during its
55     initial setup unless setValue was called prior to initialization.
56
57   * slideStart/slideEnd now fire consistently among the various methods of
58     changing the slider value (setValue, bg click, thumb drag).  A bg click
59     and drag continuation will result in two start/end events.
60
61   * Added a silent flag to setValue and setRegionValue to silence all of the
62     events during that operation.
63
642.3.0
65   * Added valueChangeSource, which specifies whether the last value change
66     was the result of user interaction with the control, or a result of a
67     programmatic update (setValue)
68
692.2.2
70   * No change
71
722.2.1
73   * No change
74
752.2.0
76   * Added the missing "force" parameter to the signature for setRegionValue
77   * Deprecated the moveComplete flag
78
790.12.2
80   * No change
81
820.12.1
83
84   * Removed unnecessary getXY calls that were contributing to slower performance
85     in FireFox when the slider was deeply nested in the DOM.
86
870.12.0
88
89   * Added "slideStart", "slideEnd", and "change" custom events.  The abstract
90     methods these will eventually replace still work.
91
92   * The default animation duration is 0.2 seconds (reduced from 0.4 seconds),
93     and is configurable via the animationDuration property.
94
95   * Keyboard navigation is now built in.  The background needs a tabindex for
96     keyboard nav to work.  Keyboard nav can be disabled by setting enableKeys
97     to false.  The number of pixels the slider moves when the arrow keys
98     are pressed is controlled by keyIncrement, and defaults to 20.  Note,
99     Safari support limited to background element types that support focus
100     in that browser. http://bugs.webkit.org/show_bug.cgi?id=7138
101
102   * Fixed broken doctype in examples/index.html
103
104   * Catching an unhandled script exception in FF that could occur when
105     attempting to focus the slider background while a text field without
106     autocomplete="false" has focus
107
1080.11.3
109
110   * No change
111
1120.11.0
113
114   * When the thumb is clicked and dragged, the click position delta is properly
115     applied.
116
117   * The slider background can be disabled by setting backgroundEnabled to false.
118
119   * Added SliderThumb->clearTicks
120
121   * Incorporated updated drag and drop performance improvements
122
1230.10.0
124
125   * Drag and drop's autoscroll feature is now turned off by default
126     in the slider.
127
128   * The slider no longer sets its initial value upon initialization
129
130   * RGB slider example fixed for IE7.
131
132   * Updated to work with the onAvailable feature in Drag and Drop.
133
134   * Updated the basic slider example page to make the control more
135     accessible to non-FF1.5 browsers.
136
137   * Split the examples into separate pages
138
139