src/cm/media/js/lib/yui/yui3.0.0/releasenotes/README.slider
changeset 0 40c8f766c9b8
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     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
       
     5     * Removed noop _setValueFn and the setter config for the value attribute
       
     6     * Renamed static protected AXIS_KEYS to _AXIS_KEYS
       
     7     * Renamed _defUpdateValueFromDD to _defThumbDragFn per naming conventions
       
     8     * Added _convertOffsetToValue to mirror _convertValueToOffset
       
     9 
       
    10 3.0.0 beta 1
       
    11     * renamed the valueSet custom event to positionThumb and rejiggered the
       
    12       logic of the default function and support methods.
       
    13     * renamed _defSyncUI to _defSyncFn for library nomenclature consistency
       
    14     * Added protected _convertValueToOffset to help position the thumb
       
    15     * Set bubble: false on the DD.Drag instance
       
    16     * Created a ConsoleFilters plugin to restore the filter checkboxes familiar
       
    17       to yui2 users. myConsole.plug(Y.Plugin.ConsoleFilters);
       
    18     * Added collapse/expand button to header and changed input[type=button]s to
       
    19       button elements
       
    20     * silence the logging subsystem during the print cycle
       
    21     * major markup and skin css overhaul
       
    22     * added support for setting height and width in configuration
       
    23     * logLevel filtering now only applies to messages with info|warn|error.
       
    24       All other messages pass through.
       
    25     * static Console.LOG_LEVEL_INFO etc are now strings
       
    26     * added logSource attribute to support a single Console instance listening
       
    27       to all YUI instance log statements { logSource: Y.Global }
       
    28     * added destructor
       
    29     * Renamed _timeout to _printLoop and _clearTimeout to _cancelPrintLoop
       
    30     * refactored printLogEntry to call new _createEntry(meta). _addToConsole
       
    31       subsumed into printLogEntry.  _createEntry returns an HTML string.
       
    32     * print loop scheduled on render to display any previously buffered entries
       
    33     * print loop only scheduled if the Console has been rendered
       
    34     * entries added to Console via DocumentFragment and Node instance creation
       
    35       avoided for performance
       
    36     * buffer is spliced at the beginning of a print loop to limit entries that
       
    37       would be removed by consoleLimit anyway
       
    38 
       
    39 3.0.0 PR2
       
    40     Initial release