+2008-03-04 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Fixed bug #7754: htmlArea RTE: Caption should be first element in table
+
2008-03-03 Ingo Renner <ingo@typo3.org>
* Release of TYPO3 4.2.0beta3
2008-03-03 Ingo Renner <ingo@typo3.org>
* Release of TYPO3 4.2.0beta3
+2008-03-04 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Fixed bug #7754: htmlArea RTE: Caption should be first element in table
+
2008-03-02 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #7725: buttons.left(right,center,justifyfull).useClass not honored by htmlArea RTE
2008-03-02 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #7725: buttons.left(right,center,justifyfull).useClass not honored by htmlArea RTE
}
if (!caption) {
var caption = doc.createElement("caption");
}
if (!caption) {
var caption = doc.createElement("caption");
- table.appendChild(caption);
+ table.insertBefore(caption, table.firstChild);
}
caption.innerHTML = val;
} else {
}
caption.innerHTML = val;
} else {