/**
 * @class KitchenSink.controllers.index
 * Register the index controller and render the main application
 * 
 * Used for blobal navigation. 
 *
 */
Ext.regController("index", {
    index: function() {
        this.render({
            xtype: 'attKitchenSink'
        }, Ext.getBody());
    },
    
    
    showList: function() {
      
      console.log("KitchenSink", this,KitchenSink);
      Ext.getCmp('viewport').setActiveItem("apiList");
      
    }
  
});
