Bug #23432 » 15536_v1.diff
typo3/js/extjs/debugPanel.js (Arbeitskopie) | ||
---|---|---|
} else {
|
||
if (!this.items.getCount()) {
|
||
this.hide();
|
||
this.fireEvent('resize');
|
||
this.ownerCt.fireEvent('resize');
|
||
}
|
||
this.tabGroups.removeKey(element.title);
|
||
}
|
typo3/js/extjs/viewport.js (Arbeitskopie) | ||
---|---|---|
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');
|
||
}
|
||
}
|
||
});
|
||
},
|
||
/**
|