Removed "sort by" functionality from hooked browser tree

Fixes issue 539
This commit is contained in:
bcoles
2011-12-27 14:26:02 +10:30
parent e8fba4f414
commit 746ac62b8e

View File

@@ -43,7 +43,9 @@ ZombieTabs = function(zombie_tree_list) {
tree.reload();
});
};
/* the "sort by" functionality is not used yet
//the bottom bar for that panel
this.bottom_bar = new Ext.Toolbar({
items: [
@@ -72,7 +74,7 @@ ZombieTabs = function(zombie_tree_list) {
}
]
});
*/
MainPanel.superclass.constructor.call(this, {
id: 'zombie-tree-tabs-panel',
title: 'Hooked Browsers',
@@ -85,9 +87,9 @@ ZombieTabs = function(zombie_tree_list) {
minSize: 175,
maxSize: 400,
deferredRender: false,
items: this.tree_items,
bbar: this.bottom_bar
items: this.tree_items
// bbar: this.bottom_bar
});
};
Ext.extend(ZombieTabs, Ext.TabPanel);
Ext.extend(ZombieTabs, Ext.TabPanel);