Index: typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (révision 9625) +++ typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) @@ -4726,10 +4726,9 @@ title: this.localize(title) || title, cls: 'htmlarea-window', width: dimensions.width, - height: dimensions.height, border: false, - // As of ExtJS 3.1, JS error with IE when the window is resizable - //resizable: !Ext.isIE, + // As of ExtJS 3.3, JS error with IE when the window is resizable + resizable: !Ext.isIE, iconCls: this.getButton(buttonId).iconCls, listeners: { afterrender: { @@ -4746,6 +4745,7 @@ items: { // The content iframe xtype: 'box', + height: dimensions.height-20, itemId: 'content-iframe', autoEl: { tag: 'iframe', Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Image/typo3image.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Image/typo3image.js (révision 9624) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Image/typo3image.js (copie de travail) @@ -93,7 +93,7 @@ this.getWindowDimensions( { width: 610, - height: 390 + height: 500 }, buttonId ), Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link/typo3link.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link/typo3link.js (révision 9624) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/TYPO3Link/typo3link.js (copie de travail) @@ -170,7 +170,7 @@ this.getWindowDimensions( { width: 550, - height: 350 + height: 500 }, buttonId ),