Bug #20223 » rtehtmlarea_bugfix_10747_typo3_4-2.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);
|
||
};
|
||
/*
|
- « Previous
- 1
- 2
- Next »