|
0
|
1 |
The Slider widget
|
|
|
2 |
The Slider widget creates an input UI involving a draggable thumb, representing a value, sliding along a rail, representing the finite value range.
|
|
|
3 |
|
|
|
4 |
3.0.0 beta1
|
|
|
5 |
* renamed the valueSet custom event to positionThumb and rejiggered the
|
|
|
6 |
logic of the default function and support methods.
|
|
|
7 |
* renamed _defSyncUI to _defSyncFn for library nomenclature consistency
|
|
|
8 |
* Added protected _convertValueToOffset to help position the thumb
|
|
|
9 |
* Set bubble: false on the DD.Drag instance
|
|
|
10 |
* Created a ConsoleFilters plugin to restore the filter checkboxes familiar
|
|
|
11 |
to yui2 users. myConsole.plug(Y.Plugin.ConsoleFilters);
|
|
|
12 |
* Added collapse/expand button to header and changed input[type=button]s to
|
|
|
13 |
button elements
|
|
|
14 |
* silence the logging subsystem during the print cycle
|
|
|
15 |
* major markup and skin css overhaul
|
|
|
16 |
* added support for setting height and width in configuration
|
|
|
17 |
* logLevel filtering now only applies to messages with info|warn|error.
|
|
|
18 |
All other messages pass through.
|
|
|
19 |
* static Console.LOG_LEVEL_INFO etc are now strings
|
|
|
20 |
* added logSource attribute to support a single Console instance listening
|
|
|
21 |
to all YUI instance log statements { logSource: Y.Global }
|
|
|
22 |
* added destructor
|
|
|
23 |
* Renamed _timeout to _printLoop and _clearTimeout to _cancelPrintLoop
|
|
|
24 |
* refactored printLogEntry to call new _createEntry(meta). _addToConsole
|
|
|
25 |
subsumed into printLogEntry. _createEntry returns an HTML string.
|
|
|
26 |
* print loop scheduled on render to display any previously buffered entries
|
|
|
27 |
* print loop only scheduled if the Console has been rendered
|
|
|
28 |
* entries added to Console via DocumentFragment and Node instance creation
|
|
|
29 |
avoided for performance
|
|
|
30 |
* buffer is spliced at the beginning of a print loop to limit entries that
|
|
|
31 |
would be removed by consoleLimit anyway
|
|
|
32 |
|
|
|
33 |
3.0.0pr2
|
|
|
34 |
Initial release
|