Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / examples / forum / classes / Main.js
diff --git a/examples/forum/classes/Main.js b/examples/forum/classes/Main.js
deleted file mode 100644 (file)
index 4d08ef7..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-Ext.define('ForumBrowser.Main', {
-    extend: 'Ext.container.Viewport',
-    
-    initComponent: function(){
-        Ext.apply(this, {
-            layout: 'border',
-            itemId: 'main',
-            items: [{
-                xtype: 'forumlist',
-                region: 'west',
-                width: 300,
-                title: 'Forums',
-                split: true,
-                margins: '5 0 5 5'
-            }, {
-                region: 'center',
-                xtype: 'tabpanel',
-                margins: '5 5 5 0',
-                minWidth: 400,
-                border: false,
-                tabBar: {
-                    border: true
-                },
-                items: {
-                    itemId: 'topic',
-                    xtype: 'topiccontainer'
-                }
-            }]
-        });
-        this.callParent();
-    },
-    
-    loadForum: function(rec){
-        this.down('#topic').loadForum(rec);
-    }  
-});