Bug #20976 » rtehtmlarea_bugfix_11847_trunk_v2.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) | ||
---|---|---|
htmlarea.appendChild(iframe);
|
||
this._iframe = iframe;
|
||
HTMLArea._appendToLog("[HTMLArea::generate]: Editor iframe successfully created.");
|
||
this.initIframe();
|
||
if (HTMLArea.is_opera) {
|
||
// Opera 10 needs lots of time here...
|
||
window.setTimeout("HTMLArea.initIframe(\'" + this._editorNumber + "\');", 200);
|
||
} else {
|
||
this.initIframe();
|
||
}
|
||
return this;
|
||
};
|
||