Roo/bootstrap/Slider.js
[roojs1] / Roo / bootstrap / Slider.js
1 /*
2  * - LGPL
3  *
4  * page container.
5  * 
6  */
7
8
9 /**
10  * @class Roo.bootstrap.Container
11  * @extends Roo.bootstrap.Component
12  * Bootstrap Container class
13  * @cfg {Boolean} jumbotron is it a jubmotron element
14  * @cfg {String} html content of element
15  *    
16  * @constructor
17  * Create a new Container
18  * @param {Object} config The config object
19  */
20
21 Roo.bootstrap.Slider = function(config){
22     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
23 };
24
25 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
26         
27     getAutoCreate : function(){
28         
29         var cfg = {
30             tag: 'div',
31             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
32             cn: [
33                 {
34                     tag: 'a',
35                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
36                 }
37             ]
38         }
39         
40         return cfg;
41     }
42    
43 });
44
45