Project

General

Profile

Bug #22703 » rtehtmlarea_bugfix_14464_typo3_4-3.patch

Administrator Admin, 2010-06-18 19:13

View differences:

typo3/sysext/rtehtmlarea/htmlarea/plugins/BlockElements/block-elements.js (copie de travail)
element = "<" + element + ">";
}
this.editor.focusEditor();
if (HTMLArea.is_safari && !this.editor._doc.body.hasChildNodes()) {
this.editor._doc.body.appendChild((this.editor._doc.createElement("br")));
if (HTMLArea.is_safari) {
if (!this.editor._doc.body.hasChildNodes()) {
this.editor._doc.body.appendChild((this.editor._doc.createElement("br")));
}
// WebKit sometimes leaves empty block at the end of the selection
this.editor._doc.body.normalize();
}
try {
this.editor._doc.execCommand(buttonId, false, element);
(2-2/3)