range-slider.js revision a76f066cb8261ad9f7c6c4d81d8c3bed2f1a788a
3421N/AYUI.add('range-slider', function(Y) {
3421N/A
3421N/A/**
3421N/A * Create a sliding value range input visualized as a draggable thumb on a
3421N/A * background rail element.
3421N/A *
3421N/A * @module slider
3421N/A * @main slider
3421N/A * @submodule range-slider
3421N/A */
3421N/A
3421N/A/**
3421N/A * Create a slider to represent an integer value between a given minimum and
3421N/A * maximum. Sliders may be aligned vertically or horizontally, based on the
3421N/A * <code>axis</code> configuration.
3421N/A *
3421N/A * @class Slider
3421N/A * @constructor
3421N/A * @extends SliderBase
3421N/A * @uses SliderValueRange
3421N/A * @uses ClickableRail
3421N/A * @param config {Object} Configuration object
3421N/A */
3421N/AY.Slider = Y.Base.build( 'slider', Y.SliderBase,
3421N/A [ Y.SliderValueRange, Y.ClickableRail ] );
3421N/A
3421N/A
3421N/A
3421N/A}, '@VERSION@' ,{requires:['slider-base', 'clickable-rail', 'slider-value-range']});
3421N/A