* Fixed bug #17140: htmlArea RTE: In WebKit, RTE inserts incorrect link if text is double-clicked
* Updated htmlArea RTE version to 2.1.5
+ * Fixed bug #16975: htmlArea RTE: Use parentNode rather than parentElement
2011-01-21 Susanne Moog <typo3@susanne-moog.de>
+2011-01-21 Stanislas Rolland <typo3@sjbr.ca>
+
+ * Fixed bug #16975: htmlArea RTE: Use parentNode rather than parentElement
+
2011-01-20 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #17140: htmlArea RTE: In WebKit, RTE inserts incorrect link if text is double-clicked
});
break;
}
- var tr = cell.parentElement;
+ var tr = cell.parentNode;
var no_cols = parseInt(prompt(this.localize("How many columns would you like to merge?"), 2));
if (!no_cols) break;
var no_rows = parseInt(prompt(this.localize("How many rows would you like to merge?"), 2));