You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
903 B
35 lines
903 B
/*
|
|
YUI 3.17.2 (build 9c3c78e)
|
|
Copyright 2014 Yahoo! Inc. All rights reserved.
|
|
Licensed under the BSD License.
|
|
http://yuilibrary.com/license/
|
|
*/
|
|
|
|
YUI.add('range-slider', function (Y, NAME) {
|
|
|
|
/**
|
|
* Create a sliding value range input visualized as a draggable thumb on a
|
|
* background rail element.
|
|
*
|
|
* @module slider
|
|
* @main slider
|
|
* @submodule range-slider
|
|
*/
|
|
|
|
/**
|
|
* Create a slider to represent an integer value between a given minimum and
|
|
* maximum. Sliders may be aligned vertically or horizontally, based on the
|
|
* <code>axis</code> configuration.
|
|
*
|
|
* @class Slider
|
|
* @constructor
|
|
* @extends SliderBase
|
|
* @uses SliderValueRange
|
|
* @uses ClickableRail
|
|
* @param config {Object} Configuration object
|
|
*/
|
|
Y.Slider = Y.Base.build( 'slider', Y.SliderBase,
|
|
[ Y.SliderValueRange, Y.ClickableRail ] );
|
|
|
|
|
|
}, '3.17.2', {"requires": ["slider-base", "slider-value-range", "clickable-rail"]});
|
|
|