Bug #20223 » rtehtmlarea_bugfix_10747_trunk.patch
typo3/sysext/rtehtmlarea/htmlarea/htmlarea-ie.js (copie de travail) | ||
---|---|---|
* Split the text node, if needed.
|
||
*/
|
||
HTMLArea.prototype.insertNodeAtSelection = function(toBeInserted) {
|
||
var sel = this._getSelection();
|
||
var range = this._createRange(sel);
|
||
range.pasteHTML(toBeInserted.outerHTML);
|
||
this.insertHTML(toBeInserted.outerHTML);
|
||
};
|
||
/*
|