Bug #79271 » 79271.patch
typo3/sysext/rtehtmlarea/Resources/Public/JavaScript/HTMLArea/Plugin/Plugin.js | ||
---|---|---|
src: url
|
||
}
|
||
},
|
||
maximizable: true
|
||
maximizable: true,
|
||
// default position is "absolute". Forcing "fixed" to avoid window following parent scroll
|
||
style: {
|
||
position: 'fixed'
|
||
},
|
||
// removing shadow since it does not stay "fixed" like the window
|
||
shadow: false
|
||
});
|
||
this.show();
|
||
},
|
||
... | ... | |
* Dialogue window onClose handler
|
||
*/
|
||
onClose: function () {
|
||
// Restore window before closing, to avoid residual classes on container
|
||
this.dialog.restore();
|
||
this.removeListeners();
|
||
this.editor.focus();
|
||
this.restoreSelection();
|