Fix #6465 - drag drop for cards
[roojs1] / Roo / bootstrap / NavSidebar.js
index 6a56d7f..df2284e 100644 (file)
@@ -6,96 +6,33 @@
  */
 
 /**
- * @class Roo.bootstrap.Navbar
- * @extends Roo.bootstrap.Component
- * Bootstrap Navbar class
- * @cfg {Boolean} sidebar has side bar
- * @cfg {Boolean} bar is a bar?
- * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
- * @cfg {String} brand what is brand
- * @cfg {Boolean} inverse is inverted color
- * @cfg {String} type (nav | pills | tabs)
- * @cfg {Boolean} arrangement stacked | justified
- * @cfg {String} align (left | right) alignment
- * @cfg {String} brand_href href of the brand
- * @cfg {Boolean} main (true|false) main nav bar? default false
- * @cfg {Boolean} loadMask (true|false) loadMask on the bar
- * @cfg {String} tag (header|footer|nav|div) default is nav 
-
+ * @class Roo.bootstrap.NavSidebar
+ * @extends Roo.bootstrap.Navbar
+ * Bootstrap Sidebar class
  * 
  * @constructor
- * Create a new Navbar
+ * Create a new Sidebar
  * @param {Object} config The config object
  */
 
 
 Roo.bootstrap.NavSidebar = function(config){
     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
-   
-    
 };
 
 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
     
-    sidebar : true,
-    
-    // private
-    navItems : false,
+    sidebar : true, // used by Navbar Item and NavbarGroup at present...
     
     getAutoCreate : function(){
         
         
-        return = {
+        return  {
             tag: 'div',
-            cls: 'sidebar-nav'
+            cls: 'sidebar sidebar-nav'
         };
     
         
-    },
-    
-    initEvents :function ()
-    {
-        //Roo.log(this.el.select('.navbar-toggle',true));
-        this.el.select('.navbar-toggle',true).on('click', function() {
-           // Roo.log('click');
-            this.el.select('.navbar-collapse',true).toggleClass('in');                                 
-        }, this);
-        
-        var mark = {
-            tag: "div",
-            cls:"x-dlg-mask"
-        }
-        
-        this.maskEl = Roo.DomHelper.append(this.el, mark, true);
-        
-        var size = this.el.getSize();
-        this.maskEl.setSize(size.width, size.height);
-        this.maskEl.enableDisplayMode("block");
-        this.maskEl.hide();
-        
-        if(this.loadMask){
-            this.maskEl.show();
-        }
-    },
-    
-    
-    getChildContainer : function()
-    {
-        if (this.bar === true) {
-            return this.el.select('.collapse',true).first();
-        }
-        
-        return this.el;
-    },
-    
-    mask : function()
-    {
-        this.maskEl.show();
-    },
-    
-    unmask : function()
-    {
-        this.maskEl.hide();
     }