2010-08-23 Steffen Kamper <steffen@typo3.org>
+ * Fixed bug #15536: DebugConsole - Compat with ExtJS 3.2.x (broken resize event and double split bar) (Thanks to Stefan Galinski)
* Updated sysexts version numbers and md5 values
* Added feature #15513: Log ExtDirect Exceptions in DebugConsole (Thanks to Stefan Galinski)
} else {
if (!this.items.getCount()) {
this.hide();
- this.fireEvent('resize');
+ this.ownerCt.fireEvent('resize');
}
this.tabGroups.removeKey(element.title);
}
this.NavigationContainer = Ext.ComponentMgr.get('typo3-navigationContainer');
this.Topbar = Ext.ComponentMgr.get('typo3-topbar');
this.ModuleMenuContainer = Ext.ComponentMgr.get('typo3-module-menu');
-
- // adds the debug console and some listeners to consider the initial hiding of
- // the debug console (the viewport needs to be resized if it's expand/collapse)
- // -> see the TYPO3.BackendSizeManager
this.DebugConsole = Ext.ComponentMgr.get('typo3-debug-console');
- this.DebugConsole.addListener({
- 'resize': {
- scope: this,
- fn: function() {
- this.fireEvent('resize');
- }
- },
- 'collapse': {
- scope: this,
- fn: function() {
- this.fireEvent('resize');
- }
- }
- });
},
/**